@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --cream:       #F5F0E8;
    --cream-light: #FAF8F4;
    --dark:        #0D0D0D;
    --dark-2:      #131210;
    --gold:        #C9A96E;
    --gold-light:  #DFC28E;
    --muted:       #6B6560;
    --white:       #FFFFFF;
    --border:      rgba(201,169,110,0.18);
    --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cream-light);
    color: var(--dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.1; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: 'Montserrat', sans-serif; cursor: pointer; border: none; }

/* ─── Utilities ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 52px; }
.section    { padding: 108px 0; }
.bg-dark    { background: var(--dark-2); }
.bg-cream   { background: var(--cream); }
.white      { color: var(--white); }

/* ─── Lazy Motion — Scroll Reveal ──────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(90px) scale(0.96);
    filter: blur(8px);
    transition: opacity 1.1s var(--ease), transform 1.1s var(--ease), filter 1.1s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Staggered children */
.reveal-child > * {
    opacity: 0;
    transform: translateY(60px) scale(0.93);
    filter: blur(6px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
}
.reveal-child.visible > *:nth-child(1) { opacity:1; transform:none; filter:blur(0); transition-delay: 0.05s; }
.reveal-child.visible > *:nth-child(2) { opacity:1; transform:none; filter:blur(0); transition-delay: 0.18s; }
.reveal-child.visible > *:nth-child(3) { opacity:1; transform:none; filter:blur(0); transition-delay: 0.31s; }
.reveal-child.visible > *:nth-child(4) { opacity:1; transform:none; filter:blur(0); transition-delay: 0.44s; }
.reveal-child.visible > *:nth-child(5) { opacity:1; transform:none; filter:blur(0); transition-delay: 0.57s; }
.reveal-child.visible > *:nth-child(6) { opacity:1; transform:none; filter:blur(0); transition-delay: 0.70s; }
.reveal-child.visible > *:nth-child(7) { opacity:1; transform:none; filter:blur(0); transition-delay: 0.83s; }

/* ─── Section Headers ───────────────────────────────────────── */
.section-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px; text-transform: uppercase;
    letter-spacing: 0.38em; font-weight: 600;
    color: var(--gold); margin-bottom: 18px;
}
.section-header-center { text-align: center; margin-bottom: 68px; }
.section-header-center h2 { font-size: 54px; }

h2 { font-size: 50px; margin-bottom: 28px; }
h3 { font-size: 30px; margin-bottom: 14px; }
h4 { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 600; margin-bottom: 12px; }

.text-content p {
    color: var(--muted); font-size: 15px;
    line-height: 1.95; margin-bottom: 22px; font-weight: 300;
}

/* ─── Grid ──────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }

/* ─── Navbar ────────────────────────────────────────────────── */
nav {
    position: fixed; top: 0; width: 100%; z-index: 200;
    transition: all 0.45s ease; padding: 30px 0;
}
nav.scrolled {
    background: rgba(250,248,244,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 16px 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.07), 0 8px 32px rgba(0,0,0,0.04);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 52px;
    display: flex; justify-content: space-between; align-items: center;
}

/* Logo */
.logo-group { display: flex; align-items: center; gap: 14px; }
.logo-img { height: 44px; width: 44px; object-fit: cover; border-radius: 3px; }
.logo-text { display: flex; flex-direction: column; }
.logo-label {
    font-size: 8px; text-transform: uppercase; letter-spacing: 0.3em;
    font-weight: 600; opacity: 0.55; line-height: 1.4;
}
.logo-name {
    font-family: 'Cormorant Garamond', serif; font-size: 20px;
    letter-spacing: 0.13em; text-transform: uppercase; line-height: 1.2;
}

/* Desktop links */
.desktop-only { display: flex; }
.nav-links {
    display: flex; align-items: center; gap: 38px;
    font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600;
}
.nav-links a:not(.btn-nav) {
    color: inherit; opacity: 0.72; transition: opacity 0.25s, color 0.25s;
    padding: 4px 0; position: relative;
}
.nav-links a:not(.btn-nav)::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.3s ease;
}
.nav-links a:not(.btn-nav):hover { opacity: 1; color: var(--gold); }
.nav-links a:not(.btn-nav):hover::after { width: 100%; }

.btn-nav {
    background: var(--gold); color: var(--dark);
    padding: 11px 28px; font-size: 10px; text-transform: uppercase;
    letter-spacing: 0.15em; font-weight: 600; border-radius: 2px;
    transition: all 0.3s;
}
.btn-nav:hover { background: var(--dark); color: var(--white); }

/* Transparent nav over hero */
nav:not(.scrolled) .nav-links a,
nav:not(.scrolled) .logo-name,
nav:not(.scrolled) .logo-label { color: white; }
nav:not(.scrolled) .btn-nav { background: rgba(201,169,110,0.82); color: white; }
nav:not(.scrolled) .menu-toggle { color: white; }

/* Language toggle */
.lang-toggle {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 7px 14px;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
    border-radius: 2px;
}
.lang-toggle:hover { background: var(--gold); color: var(--dark); }
nav:not(.scrolled) .lang-toggle { border-color: rgba(255,255,255,0.7); color: rgba(255,255,255,0.9); }
nav:not(.scrolled) .lang-toggle:hover { background: rgba(255,255,255,0.15); color: white; }

/* Hamburger */
.mobile-only { display: none; }
.menu-toggle {
    background: none; border: none; cursor: pointer; color: inherit;
    padding: 6px; display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
}

/* ─── Mobile Menu ───────────────────────────────────────────── */
.menu-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.55); z-index: 298;
    backdrop-filter: blur(3px);
}
.menu-overlay.active { display: block; }

.mobile-menu {
    position: fixed; top: 0; right: -100%; width: min(360px, 85vw); height: 100%;
    background: var(--dark-2); z-index: 299;
    transition: right 0.42s var(--ease);
    overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu-inner {
    display: flex; flex-direction: column;
    padding: 80px 40px 48px;
    min-height: 100%;
}
.mobile-close {
    position: absolute; top: 22px; right: 22px;
    background: none; border: none; color: white; cursor: pointer;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0.5; transition: opacity 0.2s;
}
.mobile-close:hover { opacity: 1; }
.mobile-menu-inner a:not(.mobile-reserve-btn) {
    color: rgba(255,255,255,0.65); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.22em; font-weight: 600;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s, padding-left 0.25s;
}
.mobile-menu-inner a:not(.mobile-reserve-btn):hover { color: var(--gold); padding-left: 8px; }
.mobile-reserve-btn {
    display: block; margin-top: 40px;
    background: var(--gold); color: var(--dark);
    text-align: center; padding: 17px;
    font-size: 10px; text-transform: uppercase;
    letter-spacing: 0.22em; font-weight: 700; border-radius: 2px;
    transition: background 0.3s;
}
.mobile-reserve-btn:hover { background: var(--gold-light); }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
    height: 100vh; min-height: 680px;
    position: relative; display: flex;
    align-items: center; justify-content: center;
    text-align: center; color: white; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.07);
    transition: transform 9s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        165deg,
        rgba(0,0,0,0.28) 0%,
        rgba(0,0,0,0.58) 55%,
        rgba(0,0,0,0.72) 100%
    );
}
.hero-content {
    position: relative; z-index: 10;
    padding: 0 28px; max-width: 860px;
}
.hero-eyebrow {
    font-size: 10px; text-transform: uppercase;
    letter-spacing: 0.55em; margin-bottom: 32px;
    font-weight: 600; opacity: 0.65;
    display: flex; align-items: center; justify-content: center; gap: 18px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
    content: ''; display: inline-block;
    width: 44px; height: 1px; background: rgba(255,255,255,0.38);
}
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 116px; font-weight: 300;
    margin-bottom: 24px; line-height: 0.93;
    letter-spacing: -0.01em;
}
.hero-sub {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 27px; font-weight: 300;
    margin-bottom: 56px; opacity: 0.82;
    letter-spacing: 0.02em;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Hero CTAs */
.btn-gold {
    background: var(--gold); color: var(--dark);
    padding: 18px 50px; font-size: 10px; text-transform: uppercase;
    letter-spacing: 0.22em; font-weight: 700; border-radius: 2px;
    transition: all 0.38s;
    box-shadow: 0 8px 36px rgba(201,169,110,0.32);
    display: inline-flex; align-items: center; gap: 9px;
}
.btn-gold:hover {
    background: var(--gold-light); transform: translateY(-3px);
    box-shadow: 0 18px 52px rgba(201,169,110,0.42);
}
.btn-outline {
    background: transparent; color: white;
    border: 1px solid rgba(255,255,255,0.42);
    padding: 18px 50px; font-size: 10px; text-transform: uppercase;
    letter-spacing: 0.22em; font-weight: 700; border-radius: 2px;
    transition: all 0.38s;
    display: inline-flex; align-items: center; gap: 9px;
}
.btn-outline:hover {
    background: rgba(255,255,255,0.11);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-3px);
}

/* Scroll hint line */
.hero-scroll-hint {
    position: absolute; bottom: 38px; left: 50%;
    transform: translateX(-50%); z-index: 10;
}
.hero-scroll-hint span {
    display: block; width: 1px; height: 64px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 100%);
    margin: 0 auto;
    animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; opacity:1; }
    50%  { transform: scaleY(1); transform-origin: top; opacity:1; }
    100% { transform: scaleY(1); transform-origin: bottom; opacity:0; }
}

/* ─── About ─────────────────────────────────────────────────── */
.img-container {
    overflow: hidden; border-radius: 2px;
    box-shadow: 0 36px 88px rgba(0,0,0,0.13);
    position: relative;
}
.img-container::before {
    content: ''; position: absolute;
    top: -18px; left: -18px; right: 18px; bottom: 18px;
    border: 1px solid rgba(201,169,110,0.35);
    border-radius: 2px; z-index: -1;
    transition: opacity 0.4s;
}
.about-img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover;
    transition: transform 0.85s var(--ease);
    display: block;
}
.img-container:hover .about-img { transform: scale(1.045); }

.about-stats {
    display: flex; gap: 44px; margin-top: 44px; padding-top: 44px;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px; font-weight: 600; color: var(--gold); line-height: 1;
}
.stat-label {
    font-size: 10px; text-transform: uppercase;
    letter-spacing: 0.14em; opacity: 0.45; margin-top: 7px; font-weight: 500;
}

/* ─── Features / Why Choose ─────────────────────────────────── */
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; margin-top: 0;
}
.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.055);
    padding: 52px 38px;
    transition: background 0.35s, border-color 0.35s;
    cursor: default;
}
.feature-card:hover {
    background: rgba(201,169,110,0.06);
    border-color: rgba(201,169,110,0.22);
}
.feature-icon {
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); margin-bottom: 26px;
}
.feature-icon svg { width: 28px; height: 28px; stroke-width: 1.4; }
.feature-card h4 { color: white; font-size: 14px; margin-bottom: 12px; letter-spacing: 0.02em; }
.feature-card p { color: rgba(255,255,255,0.45); font-size: 13px; line-height: 1.75; font-weight: 300; }

/* ─── Gallery Grid ──────────────────────────────────────────── */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.gallery-item {
    position: relative; overflow: hidden; border-radius: 4px;
    cursor: pointer; background: #111;
    aspect-ratio: 4 / 3;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.75s var(--ease), filter 0.45s ease;
}

.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.38s ease;
    color: white;
}
.gallery-overlay svg {
    width: 34px; height: 34px;
    opacity: 0; transform: scale(0.72);
    transition: opacity 0.3s, transform 0.35s;
    stroke-width: 1.4;
}
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.44); }
.gallery-item:hover .gallery-overlay svg { opacity: 1; transform: scale(1); }
.gallery-item:hover img { transform: scale(1.09); filter: brightness(0.82); }

/* ─── Reviews ───────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
    background: white; padding: 42px 34px;
    border-radius: 2px; border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.32s, box-shadow 0.32s;
}
.review-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 64px rgba(0,0,0,0.10);
}
.review-card.featured {
    border-color: rgba(201,169,110,0.55);
    box-shadow: 0 8px 40px rgba(201,169,110,0.10);
}
.review-stars { font-size: 15px; color: var(--gold); letter-spacing: 3px; margin-bottom: 22px; }
.review-text {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 19px; line-height: 1.62; color: var(--dark);
    margin-bottom: 30px; font-weight: 400;
}
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--gold); color: white;
    font-size: 18px; font-weight: 400;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-family: 'Cormorant Garamond', serif;
}
.reviewer-name  { display: block; font-weight: 600; font-size: 13px; }
.reviewer-origin { display: block; font-size: 11px; opacity: 0.44; margin-top: 2px; }
.reviews-footer { margin-top: 60px; display: flex; justify-content: center; }
.rating-badge {
    display: flex; align-items: center; gap: 22px;
    background: white; padding: 22px 44px;
    border-radius: 2px; border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.rating-num {
    font-family: 'Cormorant Garamond', serif; font-size: 56px;
    font-weight: 300; color: var(--dark); line-height: 1;
}
.rating-stars  { display: block; font-size: 16px; color: var(--gold); letter-spacing: 3px; }
.rating-source { display: block; font-size: 10px; opacity: 0.4; text-transform: uppercase; letter-spacing: 0.18em; margin-top: 5px; }

/* ─── Okolica ───────────────────────────────────────────────── */
.okolica-actions {
    display: flex; gap: 16px; justify-content: center;
    flex-wrap: wrap; margin-bottom: 64px;
}
.okolica-action-btn {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--gold); color: var(--dark);
    padding: 14px 32px; font-size: 10px; text-transform: uppercase;
    letter-spacing: 0.2em; font-weight: 700; border-radius: 2px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(201,169,110,0.22);
}
.okolica-action-btn:hover {
    background: var(--gold-light); transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(201,169,110,0.32);
}
.okolica-action-btn--outline {
    background: transparent;
    border: 1px solid var(--gold); color: var(--gold);
    box-shadow: none;
}
.okolica-action-btn--outline:hover {
    background: rgba(201,169,110,0.08); transform: translateY(-2px);
    box-shadow: none;
}
.okolica-action-btn svg { width: 15px; height: 15px; stroke-width: 2; }

.okolica-subtitle {
    text-align: center; font-size: 30px;
    margin-bottom: 44px; color: var(--dark);
}

.okolica-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.okolica-category {
    background: white; border-radius: 2px;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 30px 26px;
    transition: box-shadow 0.3s, transform 0.3s;
}
.okolica-category:hover {
    box-shadow: 0 14px 44px rgba(0,0,0,0.09);
    transform: translateY(-3px);
}
.okolica-cat-header {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 20px; padding-bottom: 14px;
    border-bottom: 1px solid rgba(201,169,110,0.22);
    color: var(--gold);
    font-size: 10px; text-transform: uppercase;
    letter-spacing: 0.22em; font-weight: 700;
}
.okolica-cat-header svg { width: 15px; height: 15px; stroke-width: 2; flex-shrink: 0; }
.okolica-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.okolica-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; line-height: 1.4; }
.okolica-name { flex: 1; color: var(--dark); font-weight: 400; }
.okolica-dist {
    color: var(--gold); font-size: 11px; font-weight: 600;
    white-space: nowrap; letter-spacing: 0.04em; flex-shrink: 0;
}
.okolica-badge {
    font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em;
    font-weight: 700; color: var(--muted);
    background: rgba(0,0,0,0.05); padding: 2px 7px;
    border-radius: 2px; white-space: nowrap; flex-shrink: 0;
}

/* ─── Location ──────────────────────────────────────────────── */
.location-desc {
    color: var(--muted); font-size: 15px; line-height: 1.9;
    margin-bottom: 38px; font-weight: 300;
}
.amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 44px; }
.amenity {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 500;
}
.amenity-icon { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; stroke-width: 2; }

.map-cta {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--gold); font-size: 10px; text-transform: uppercase;
    letter-spacing: 0.22em; font-weight: 700;
    border-bottom: 1px solid transparent; padding-bottom: 2px;
    transition: border-color 0.3s, gap 0.22s;
}
.map-cta:hover { border-color: var(--gold); gap: 13px; }
.map-cta svg { width: 14px; height: 14px; stroke-width: 2; }

.map-embed {
    border-radius: 2px; overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.11);
    border: 1px solid rgba(0,0,0,0.06);
}
.map-embed iframe { display: block; }

/* ─── Booking / Contact ─────────────────────────────────────── */
.booking-card { max-width: 740px; margin: 0 auto; text-align: center; }
.booking-header { margin-bottom: 44px; }
.booking-header h2 { font-size: 58px; }
.booking-sub { color: rgba(255,255,255,0.45); font-size: 14px; margin-top: 14px; font-weight: 300; }

.price-display {
    margin-bottom: 52px;
    display: flex; align-items: baseline; justify-content: center; gap: 10px;
}
.price-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 76px; color: var(--gold); font-weight: 300; line-height: 1;
}
.price-per { color: rgba(255,255,255,0.38); font-size: 17px; font-weight: 300; }

.booking-actions {
    display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 52px;
}
.btn-booking {
    background: var(--gold); color: var(--dark);
    padding: 21px 58px; font-size: 11px; text-transform: uppercase;
    letter-spacing: 0.2em; font-weight: 700; border-radius: 2px;
    transition: all 0.38s;
    display: inline-flex; align-items: center; gap: 10px;
    box-shadow: 0 8px 32px rgba(201,169,110,0.25);
}
.btn-booking:hover {
    background: var(--gold-light); transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(201,169,110,0.38);
}
.btn-booking svg { width: 16px; height: 16px; stroke-width: 2; }

.booking-secondary { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.btn-secondary-action {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.72);
    padding: 14px 28px; font-size: 10px; text-transform: uppercase;
    letter-spacing: 0.15em; font-weight: 600; border-radius: 2px;
    transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary-action:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3); color: white;
}
.btn-secondary-action svg { width: 14px; height: 14px; stroke-width: 2; }

.booking-contact {
    display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap;
    padding-top: 38px; border-top: 1px solid rgba(255,255,255,0.07);
}
.contact-line {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.45); font-size: 12px; font-weight: 500;
    transition: color 0.25s;
}
.contact-line:hover { color: var(--gold); }
.contact-line svg { width: 14px; height: 14px; stroke-width: 2; }
.contact-divider { color: rgba(255,255,255,0.18); font-size: 20px; }

/* ─── Lightbox ──────────────────────────────────────────────── */
.lightbox {
    position: fixed; inset: 0; background: rgba(0,0,0,0.96);
    z-index: 1000; display: none;
    align-items: center; justify-content: center;
    padding: 44px; cursor: zoom-out;
}
.lightbox img {
    max-width: calc(100% - 140px); max-height: 88vh; object-fit: contain;
    box-shadow: 0 0 120px rgba(0,0,0,0.5);
    transition: opacity 0.18s ease;
    cursor: default;
}
.lightbox img.fading { opacity: 0; }
.lightbox-close {
    position: absolute; top: 24px; right: 32px;
    background: none; border: none; color: white; cursor: pointer;
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0.45; transition: opacity 0.22s; z-index: 1;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-close svg { width: 28px; height: 28px; }

.lightbox-prev,
.lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: white; cursor: pointer;
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    z-index: 1;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); transform: translateY(-50%) scale(1.08); }
.lightbox-next:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); transform: translateY(-50%) scale(1.08); }
.lightbox-prev svg, .lightbox-next svg { width: 26px; height: 26px; stroke-width: 1.5; }

.lightbox-counter {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.38); font-size: 11px;
    letter-spacing: 0.22em; font-weight: 500; text-transform: uppercase;
    cursor: default;
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
    padding: 64px 0; text-align: center;
    border-top: 1px solid rgba(0,0,0,0.07);
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.footer-logo  { display: flex; align-items: center; gap: 13px; }
.footer-logo-img { width: 36px; height: 36px; object-fit: cover; border-radius: 2px; }
.footer-name  { font-family: 'Cormorant Garamond', serif; font-size: 20px; letter-spacing: 0.11em; }
.footer-address { font-size: 11px; opacity: 0.38; letter-spacing: 0.1em; }
.footer-copy  { font-size: 10px; text-transform: uppercase; letter-spacing: 0.32em; opacity: 0.28; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .hero-title { font-size: 90px; }
    .section-header-center h2 { font-size: 46px; }
    .booking-header h2 { font-size: 48px; }
    h2 { font-size: 42px; }
    .grid-2 { gap: 60px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .okolica-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

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

    .section { padding: 76px 0; }
    .container { padding: 0 24px; }
    .nav-container { padding: 0 24px; }
    nav { padding: 20px 0; }

    .desktop-only { display: none !important; }
    .mobile-only  { display: flex !important; }

    .hero-title { font-size: 64px; }
    .hero-sub   { font-size: 21px; }
    .hero-eyebrow { font-size: 9px; letter-spacing: 0.35em; }
    .hero-eyebrow::before, .hero-eyebrow::after { width: 28px; }

    .grid-2 { grid-template-columns: 1fr; gap: 52px; }
    .img-container::before { display: none; }

    .features-grid { grid-template-columns: 1fr; }
    .feature-card { padding: 36px 28px; }

    .section-header-center h2 { font-size: 34px; }
    .booking-header h2 { font-size: 38px; }
    h2 { font-size: 32px; }

    .about-stats { gap: 28px; }
    .stat-num { font-size: 30px; }

    .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox img { max-width: calc(100% - 110px); }

    .price-num { font-size: 58px; }
    .btn-booking { padding: 18px 32px; font-size: 10px; }
    .booking-secondary { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
    .btn-secondary-action { justify-content: center; }

    .lightbox { padding: 16px; }
    .amenities-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

    .rating-badge { padding: 18px 32px; gap: 16px; }
    .rating-num { font-size: 44px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 48px; }
    .hero-sub   { font-size: 18px; margin-bottom: 40px; }
    .btn-gold, .btn-outline { padding: 15px 28px; font-size: 9px; letter-spacing: 0.18em; }
    .hero-ctas  { gap: 10px; }
    .section-header-center h2 { font-size: 28px; }
    .booking-header h2 { font-size: 32px; }
    h2 { font-size: 26px; }

    .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
    .lightbox-prev, .lightbox-next { width: 44px; height: 44px; }
    .lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }
    .lightbox img { max-width: calc(100% - 96px); }

    .about-stats { flex-direction: column; gap: 20px; }
    .reviews-grid { max-width: 100%; }
    .amenities-grid { grid-template-columns: 1fr; }
}
