/* ============================================
   PrzystańMy — Nordic Forest Lodge
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #1E1E1E;
    background: #F8F6F1;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #2C4A3E; text-decoration: none; transition: color 0.2s; }
a:hover { color: #7A5C3A; }

/* --- Skip-to-content --- */
.skip-link {
    position: absolute;
    top: -9999px;
    left: 50%;
    transform: translateX(-50%);
    background: #2C4A3E;
    color: #fff;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10000;
    text-decoration: none;
}
.skip-link:focus {
    top: 0;
    color: #fff;
    outline: 2px solid #D4A853;
    outline-offset: 2px;
}

/* --- Focus-visible --- */
:focus-visible {
    outline: 2px solid #D4A853;
    outline-offset: 2px;
}
button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible) {
    outline: none;
    outline-offset: 2px;
}
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; color: #1E1E1E; }

/* --- Container --- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #7A5C3A;
    margin-bottom: 8px;
}

/* --- Typography --- */
h1 { font-size: 3.8rem; line-height: 1.1; letter-spacing: -0.02em; font-weight: 600; }
h2 { font-size: 2.4rem; line-height: 1.2; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
@media (max-width: 640px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }
    .section { padding: 56px 0; }
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 30px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}
.btn-primary {
    background: #D4A853;
    color: #1A2E26;
    border-color: #D4A853;
}
.btn-primary:hover {
    background: #c49a48;
    color: #1A2E26;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.35);
}
.btn-ghost {
    background: transparent;
    color: #2C4A3E;
    border-color: #2C4A3E;
}
.btn-ghost:hover {
    background: #2C4A3E;
    color: #fff;
    transform: translateY(-1px);
}
.btn-white {
    background: #fff;
    color: #2C4A3E;
    border-color: #fff;
}
.btn-white:hover {
    background: #F8F6F1;
    transform: translateY(-1px);
}

/* --- Header / Nav --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.site-header.scrolled {
    background: #F8F6F1;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 8px 0;
    border-bottom-color: transparent;
}
.site-header.scrolled .site-logo { color: #2C4A3E; }
.site-header.scrolled .site-nav a:not(.cta-pill) { color: #1E1E1E; }

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 640px) {
    .header-inner { padding: 0 20px; }
}
.site-logo {
    display: inline-block;
    transition: opacity 0.3s;
    padding: 4px 0;
}
.site-logo:hover { opacity: 0.85; }
.logo-img {
    height: 34px;
    width: auto;
    display: block;
}
.site-header.scrolled .logo-img {
    filter: brightness(0) saturate(1); /* make white logo dark green on white bg */
}
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a:not(.cta-pill) {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.9);
    transition: color 0.2s;
    position: relative;
}
.site-nav a:not(.cta-pill):hover,
.site-nav a:not(.cta-pill).active { color: #D4A853; }
.site-nav a:not(.cta-pill).active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: #D4A853;
    border-radius: 1px;
}
/* White underline on hover when header is transparent over hero */
.site-header:not(.scrolled) .site-nav a:not(.cta-pill):not(.lang-switch):hover::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: #fff;
    border-radius: 1px;
}
.cta-pill {
    background: #D4A853;
    color: #1A2E26 !important;
    padding: 10px 22px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.25s ease;
}
.cta-pill:hover {
    background: #c49a48;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212,168,83,0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(0,0,0,0.25);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    backdrop-filter: blur(4px);
    transition: background 0.3s;
}
.site-header.scrolled .hamburger { background: none; backdrop-filter: none; }
.hamburger:active { background: rgba(0,0,0,0.4); }
.site-header.scrolled .hamburger:active { background: rgba(0,0,0,0.06); }
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.site-header.scrolled .hamburger span { background: #1E1E1E; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.hamburger.active span { background: #fff !important; }

@media (max-width: 768px) {
    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #1A2E26;
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0,0,0,0.2);
        z-index: 999;
    }
    .site-nav.open { right: 0; transform: translateX(0); }
    .site-nav {
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1), right 0.3s ease;
    }
    .site-nav a:not(.cta-pill):not(.lang-switch) { color: rgba(255,255,255,0.9) !important; font-size: 1rem; }
    .site-nav a:not(.cta-pill).active::after { display: none; }
    .site-nav .lang-switch { color: #D4A853 !important; border-color: rgba(212,168,83,0.6); }
    .hamburger { display: flex; }
}

/* --- Hero --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}
.hero-slider { width: 100%; height: 100%; }
.hero-slider .swiper-slide {
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.hero-slider .swiper-slide { display: none; }
.hero-slider .swiper-slide:first-child { display: block; }
.hero-slider.swiper-initialized .swiper-slide { display: block; }
.hero-slider .swiper-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,46,38,0.7) 0%, rgba(26,46,38,0.3) 50%, rgba(0,0,0,0.2) 100%);
}
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    padding: 0 24px;
}
.hero-content .section-label { color: #D4A853; }
.hero-content h1 {
    color: #fff;
    max-width: 720px;
    margin-bottom: 20px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.45), 0 1px 3px rgba(0,0,0,0.3);
}
.hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.6;
    text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.7);
    font-size: 1.4rem;
    animation: bounceDown 2s infinite;
}
@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}
@media (max-width: 640px) {
    .hero-section { height: 90vh; min-height: 500px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-sub { font-size: 1rem; }
    .hero-ctas { flex-direction: column; align-items: center; }
}

/* --- USP Strip --- */
.usp-strip {
    background: #1A2E26;
    padding: 40px 0;
    color: #C8C0B0;
}
.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.usp-item i { font-size: 1.6rem; color: #D4A853; margin-bottom: 12px; }
.usp-item h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: 0.95rem; margin-bottom: 4px; }
.usp-item p { font-size: 0.85rem; color: #C8C0B0; }
@media (max-width: 768px) {
    .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 480px) {
    .usp-grid { grid-template-columns: 1fr; }
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #EFECE5;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; color: #4A4440; }
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-image { aspect-ratio: 16/10; }
}

/* --- Section Divider --- */
.section-divider {
    height: 1px;
    background: #DDD8CE;
    max-width: 1280px;
    margin: 0 auto;
}

/* --- Cards --- */
.card {
    background: #fff;
    border: 1px solid #E8E4DC;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.04);
    border-color: #DDD8CE;
}
.card-image {
    aspect-ratio: 3/2;
    overflow: hidden;
    background: #F5F3EF;
}
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-image img { transform: scale(1.02); will-change: transform; }
.card-body { padding: 20px 24px 24px; }
.card-body h3 { font-size: 1.3rem; margin-bottom: 6px; }
.card-meta { display: flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.card-meta span {
    font-size: 0.78rem;
    color: #4D4742;
    background: #F8F6F1;
    padding: 3px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.card-meta span i { color: #7A5C3A; }
.card-price {
    font-weight: 700;
    color: #2C4A3E;
    font-size: 1.15rem;
    margin-top: 10px;
}
.card-price small {
    font-weight: 400;
    font-size: 0.82rem;
    color: #6B6560;
}
.amenity-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 8px;
}
.amenity-tag {
    background: #F8F6F1;
    border: 1px solid #E8E4DC;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.75rem;
    color: #2C4A3E;
    white-space: nowrap;
}
.card-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #2C4A3E;
}

/* Grid helpers */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 900px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* --- Room Detail --- */
.room-header { margin-bottom: 24px; }
.room-header h1 { margin-bottom: 16px; }
.room-quick-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.room-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #4D4742;
    background: #EFECE5;
    padding: 6px 14px;
    border-radius: 999px;
}
.room-stat i { color: #7A5C3A; font-size: 0.85rem; }
.room-stat-price {
    background: #2C4A3E;
    color: #fff;
}
.room-stat-price i { color: #D4A853; }
.room-stat-price small { color: rgba(255,255,255,0.7); font-weight: 400; }

.room-gallery-wrap { margin-bottom: 28px; }
.room-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
    border-radius: 8px;
    overflow: hidden;
    max-height: 260px;
    background: #EFECE5;
    box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.room-gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
}
.room-gallery-item:first-child {
    grid-row: 1 / 3;
}
.room-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.room-gallery-item:hover img { transform: scale(1.015); will-change: transform; }
.room-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    pointer-events: none;
}
/* Single photo */
.room-gallery-count-1 {
    display: block;
    max-width: 460px;
    max-height: 240px;
    margin: 0 auto;
    background: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.room-gallery-count-1 .room-gallery-item:first-child { grid-row: auto; }
.room-gallery-count-1 .room-gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 10; border-radius: 8px; min-height: 160px; }
/* Two photos */
.room-gallery-count-2 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; max-height: 240px; }
.room-gallery-count-2 .room-gallery-item:first-child { grid-row: auto; }

/* Room Layout */
.room-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.room-main { min-width: 0; }
.room-section { margin-bottom: 36px; }
.room-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1E1E1E;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #EFECE5;
}
.room-description-text { color: #3D3D3D; }
.room-description-text p { margin-bottom: 16px; line-height: 1.8; }

/* Room Features Grid */
.room-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.room-feature-card {
    background: #fff;
    border: 1px solid #E8E4DC;
    border-radius: 12px;
    padding: 24px 12px;
    text-align: center;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.room-feature-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.room-feature-icon {
    width: 48px;
    height: 48px;
    background: #F8F6F1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #2C4A3E;
    font-size: 1.2rem;
}
.room-feature-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7A5C3A;
    margin-bottom: 4px;
}
.room-feature-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1E1E1E;
}
.room-feature-value small { font-weight: 400; color: #4D4742; font-size: 0.85rem; }
.room-feature-amenities {
    aspect-ratio: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 4px;
}
.room-feature-card:has(.room-feature-amenities) { aspect-ratio: auto; }
.room-feature-amenity {
    font-size: 0.8rem;
    font-weight: 400;
    color: #2C4A3E;
    background: #F8F6F1;
    border: 1px solid #E8E4DC;
    border-radius: 999px;
    padding: 2px 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.room-feature-amenity i { color: #7A5C3A; font-size: 0.65rem; }

/* Room Amenities Grid */
.room-amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.room-amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #E8E4DC;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #2C4A3E;
}
.room-amenity-item i {
    color: #D4A853;
    font-size: 1rem;
}

/* Room Sidebar / Booking Card */
.room-sidebar { position: sticky; top: 100px; align-self: start; }
.room-booking-card {
    background: #fff;
    border: 1px solid #E8E4DC;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.room-booking-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}
.room-price-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #2C4A3E;
    line-height: 1;
}
.room-price-unit {
    font-size: 0.9rem;
    color: #4D4742;
}
.room-price-note {
    font-size: 0.82rem;
    color: #7A5C3A;
    margin-bottom: 20px;
}
.room-booking-divider {
    height: 1px;
    background: #E8E4DC;
    margin: 20px 0;
}
.room-booking-specs { margin-bottom: 20px; }
.room-booking-spec {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #3D3D3D;
    border-bottom: 1px solid #F5F3EF;
}
.room-booking-spec:last-child { border-bottom: none; }
.room-booking-spec i {
    width: 20px;
    text-align: center;
    color: #7A5C3A;
}
.room-booking-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.room-booking-tag {
    background: #F8F6F1;
    border: 1px solid #E8E4DC;
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 0.85rem;
    color: #2C4A3E;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.room-booking-tag i { color: #7A5C3A; font-size: 0.7rem; }
.room-booking-tag-more {
    background: #2C4A3E;
    color: #fff;
    border-color: #2C4A3E;
}
.room-booking-btn {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 1rem;
    margin-bottom: 12px;
}
.room-booking-hint {
    text-align: center;
    font-size: 0.85rem;
    color: #7A5C3A;
    margin: 0;
}

/* Room Navigation */
.room-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #DDD8CE;
    gap: 16px;
}
.room-nav-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #E8E4DC;
    border-radius: 12px;
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    flex: 1;
    max-width: 280px;
}
.room-nav-link:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transform: translateY(-2px);
    color: inherit;
}
.room-nav-prev { text-align: left; }
.room-nav-next { text-align: right; align-items: flex-end; }
.room-nav-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #7A5C3A;
}
.room-nav-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1E1E1E;
}
.room-nav-all {
    font-size: 0.85rem;
    color: #7A5C3A;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
}
.room-nav-all:hover { color: #2C4A3E; }

@media (max-width: 768px) {
    .room-layout { grid-template-columns: 1fr; gap: 24px; }
    .room-sidebar { display: none; }
    .room-header { margin-bottom: 16px; }
    .room-header h1 { font-size: 1.5rem; margin-bottom: 10px; }
    .room-stat { font-size: 0.75rem; padding: 3px 8px; }
    .room-gallery { max-height: 200px; border-radius: 8px; box-shadow: none; gap: 3px; }
    .room-gallery-wrap { margin-bottom: 20px; }
    .room-gallery-count-1 { max-height: 180px; max-width: 100%; box-shadow: none; }
    .room-gallery-count-1 .room-gallery-item img { border-radius: 8px; min-height: 150px; }
    .room-gallery-count-2 { max-height: 200px; }
    .room-features-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .room-feature-card { padding: 16px 8px; aspect-ratio: auto; min-height: 100px; }
    .room-feature-icon { width: 40px; height: 40px; font-size: 1rem; margin-bottom: 8px; }
    .room-feature-label { font-size: 0.7rem; }
    .room-feature-value { font-size: 0.95rem; }
    .room-amenities-grid { grid-template-columns: 1fr; gap: 8px; }
    .room-amenity-item { font-size: 0.85rem; padding: 10px 14px; }
    .room-section { margin-bottom: 32px; }
    .room-section-title { font-size: 1.3rem; margin-bottom: 16px; }
    .room-description-text { font-size: 0.95rem; line-height: 1.7; }
    .room-nav { flex-direction: column; align-items: stretch; gap: 10px; padding-top: 24px; margin-top: 32px; }
    .room-nav-link { max-width: none; flex-direction: row; align-items: center; justify-content: space-between; padding: 14px 18px; }
    .room-nav-link .room-nav-label { font-size: 0.72rem; }
    .room-nav-link .room-nav-name { font-size: 1rem; }
    .room-nav-next { text-align: left; flex-direction: row-reverse; }
    .room-nav-all { text-align: center; order: -1; margin-bottom: 4px; padding: 10px; background: #F8F6F1; border-radius: 10px; font-size: 0.82rem; }
}

/* --- Room mobile sticky CTA bar --- */
.room-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: #fff;
    border-top: 1px solid #E8E4DC;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
    padding: 12px 20px 16px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.95);
}
.room-mobile-cta--hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}
.room-mobile-cta__price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.room-mobile-cta__amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2C4A3E;
    line-height: 1;
}
.room-mobile-cta__unit {
    font-size: 0.78rem;
    color: #6B6560;
}
.room-mobile-cta__btn {
    flex-shrink: 0;
    padding: 12px 28px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
@media (max-width: 768px) {
    .room-mobile-cta { display: flex; }
    body.page-pokoj { padding-bottom: 72px; }
}

/* --- Attractions --- */
.filter-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.filter-pill {
    padding: 8px 20px;
    border-radius: 999px;
    border: 1.5px solid #DDD8CE;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4D4742;
    cursor: pointer;
    transition: all 0.2s;
}
.filter-pill:hover, .filter-pill.active {
    background: #2C4A3E;
    color: #fff;
    border-color: #2C4A3E;
}
.attraction-card {
    background: #EFECE5;
    border: 1px solid #DDD8CE;
    border-radius: 12px;
    padding: 28px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.attraction-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.attraction-icon {
    width: 52px;
    height: 52px;
    background: #2C4A3E;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.3rem;
    color: #D4A853;
}
.attraction-card h3 { margin-bottom: 8px; }
.attraction-card p { font-size: 0.95rem; color: #4A4440; margin-bottom: 12px; }
.attraction-distance {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #F8F6F1;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #4D4742;
}
.attraction-distance i { color: #7A5C3A; }

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    aspect-ratio: 3/2;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: #EFECE5;
    transition: transform 0.3s;
}
.gallery-item:hover { transform: scale(1.015); will-change: transform; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* --- Gallery Strip (homepage) --- */
.gallery-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.gallery-strip::-webkit-scrollbar { height: 4px; }
.gallery-strip::-webkit-scrollbar-thumb { background: #DDD8CE; border-radius: 2px; }
.gallery-strip-item {
    flex: 0 0 280px;
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
    scroll-snap-align: start;
    cursor: pointer;
}
.gallery-strip-item img { width: 100%; height: 100%; object-fit: cover; }

/* --- Contact Form --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2C4A3E;
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #DDD8CE;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    background: #fff;
    color: #1E1E1E;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2C4A3E;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #2e7d32;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.form-success-card {
    background: #fff;
    border: 1px solid #E8E4DC;
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    animation: fadeInUp 0.6s ease;
}
.form-success-icon {
    width: 72px;
    height: 72px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #2e7d32;
    font-size: 2rem;
    animation: scaleIn 0.5s ease 0.2s both;
}
.form-success-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #2C4A3E;
    margin-bottom: 16px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
}
.form-success-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #D4A853;
    border-radius: 2px;
}
.form-success-card > p {
    color: #4D4742;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.form-success-details {
    background: #F8F6F1;
    border-radius: 12px;
    padding: 24px 32px;
    margin: 0 auto 32px;
    max-width: 440px;
    text-align: left;
}
.form-success-details p {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4A4440;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-success-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.form-success-details ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 0.9rem;
    color: #4D4742;
    border-bottom: 1px solid #E8E4DC;
}
.form-success-details ul li:last-child {
    border-bottom: none;
}
.form-success-details ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #D4A853;
    font-size: 0.85rem;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}
.form-error {
    background: #fce4ec;
    border: 1px solid #ef9a9a;
    color: #c62828;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

/* --- Booking form alerts --- */
.booking-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1.5px solid transparent;
}
.booking-alert__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.booking-alert__body { flex: 1; min-width: 0; }
.booking-alert__body p { margin: 0; }
.booking-alert__title { font-weight: 600; font-size: 0.92rem; margin-bottom: 6px !important; }
.booking-alert__desc { font-size: 0.9rem; line-height: 1.6; }
.booking-alert__tag {
    display: inline-block;
    background: currentColor;
    color: #fff;
    padding: 2px 10px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.82rem;
    vertical-align: middle;
    margin: 0 2px;
}

/* Conflict (room taken) – red */
.booking-alert--conflict {
    background: #fff;
    border-color: #fecaca;
}
.booking-alert--conflict .booking-alert__icon {
    background: #fef2f2;
    color: #dc2626;
}
.booking-alert--conflict .booking-alert__title {
    color: #991b1b;
}
.booking-alert--conflict .booking-alert__desc {
    color: #7f1d1d;
}
.booking-alert--conflict .booking-alert__tag {
    background: #dc2626;
}

/* Standard error – red subtle */
.booking-alert--error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}
.booking-alert--error .booking-alert__icon {
    background: #fce4ec;
    color: #dc2626;
}

/* Alternatives – green */
.booking-alert--alternatives {
    background: #f0fdf4;
    border-color: #bbf7d0;
}
.booking-alert--alternatives .booking-alert__icon {
    background: #dcfce7;
    color: #16a34a;
}
.booking-alert--alternatives .booking-alert__title {
    color: #166534;
    margin-bottom: 12px !important;
}
.booking-alert__rooms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.booking-alert__room-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1.5px solid #bbf7d0;
    border-radius: 10px;
    padding: 10px 16px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #166534;
    transition: all 0.2s ease;
    text-align: left;
}
.booking-alert__room-btn:hover {
    border-color: #16a34a;
    background: #dcfce7;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(22,163,74,0.12);
}
.room-btn__name { font-weight: 600; }
.room-btn__price {
    color: #15803d;
    font-weight: 500;
    white-space: nowrap;
}
.room-btn__price small {
    font-weight: 400;
    opacity: 0.7;
    font-size: 0.85rem;
}
.room-btn__arrow {
    color: #16a34a;
    font-size: 0.85rem;
    transition: transform 0.2s;
}
.booking-alert__room-btn:hover .room-btn__arrow {
    transform: translateX(3px);
}

/* No rooms – amber/rust warning */
.booking-alert--warning {
    background: #fefce8;
    border-color: #fde68a;
}
.booking-alert--warning .booking-alert__icon {
    background: #fef9c3;
    color: #a16207;
}
.booking-alert--warning .booking-alert__title {
    color: #854d0e;
}
.hp-field { display: none !important; }
.contact-details { background: #EFECE5; border-radius: 12px; padding: 32px; }
.contact-details h3 { margin-bottom: 20px; }
.contact-item { display: flex; gap: 12px; margin-bottom: 16px; }
.contact-item i { color: #2C4A3E; font-size: 1.1rem; width: 24px; text-align: center; margin-top: 4px; }
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* --- Booking Page --- */
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}
.booking-form-section { min-width: 0; }
.booking-info-section { position: sticky; top: 100px; }
.booking-info-card {
    background: #fff;
    border: 1px solid #E8E4DC;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}
.booking-info-card h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}
.booking-info-card h3 i { color: #7A5C3A; }
.booking-info-card ul { list-style: none; }
.booking-info-card ul li {
    padding: 8px 0;
    font-size: 0.85rem;
    color: #4A4440;
    border-bottom: 1px solid #F5F3EF;
}
.booking-info-card ul li:last-child { border-bottom: none; }
.booking-room-mini {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #F5F3EF;
}
.booking-room-mini:last-child { border-bottom: none; }
.booking-room-mini span { color: #2C4A3E; font-weight: 600; }
.form-section-title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7A5C3A;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #E8E4DC;
}

/* --- Booking contact card + input icons --- */
.booking-contact-card {
    background: #FAFAF5;
    border: 1px solid #E8E4DC;
    border-radius: 12px;
    padding: 24px;
    margin-top: 28px;
}
.booking-contact-subtitle {
    font-size: 0.85rem;
    color: #8B8478;
    margin: -4px 0 20px;
}
.input-icon { position: relative; }
.input-icon i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #B5AFA6;
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 1;
    transition: color 0.2s;
}
.input-icon input {
    padding-left: 40px;
}
.input-icon input:focus + i,
.input-icon input:focus ~ i,
.input-icon:focus-within i {
    color: #7A5C3A;
}
.input-icon textarea {
    padding-left: 40px;
}
.input-icon i.fa-pen-to-square {
    top: 16px;
    transform: none;
}

@media (max-width: 900px) {
    .booking-layout { grid-template-columns: 1fr; }
    .booking-info-section { position: static; }
}

/* --- Breadcrumb --- */
.breadcrumb {
    padding: 100px 0 24px;
    font-size: 0.82rem;
    color: #4D4742;
}
.breadcrumb a { color: #4D4742; }
.breadcrumb a:hover { color: #2C4A3E; }
.breadcrumb span { margin: 0 6px; color: #DDD8CE; }

/* --- Legal / Privacy --- */
.legal-content { max-width: 800px; }
.legal-content h2 { margin-top: 48px; font-size: 1.5rem; }
.legal-content h3 { margin-top: 32px; font-size: 1.15rem; color: #2C4A3E; }
.legal-content p { margin-bottom: 12px; line-height: 1.7; }
.legal-content ul { margin: 12px 0 20px 20px; padding: 0; }
.legal-content ul li { margin-bottom: 8px; line-height: 1.6; }
.legal-content a { color: #2C4A3E; text-decoration: underline; }
.legal-content a:hover { color: #D4A853; }
.legal-date { font-size: 0.85rem; color: #4D4742; margin-top: 16px; margin-bottom: 32px; }

/* --- Blog --- */
.blog-card .card-image { aspect-ratio: 16/9; }
.blog-card .card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-meta {
    font-size: 0.82rem;
    color: #4D4742;
    margin-bottom: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
}
.blog-meta span { display: inline-flex; align-items: center; gap: 4px; }
.blog-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.blog-tags .tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #2C4A3E;
    background: rgba(44,74,62,0.08);
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: lowercase;
}



/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 48px;
    align-items: center;
    flex-wrap: wrap;
}
.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #DDD8CE;
    background: #fff;
    color: #1E1E1E;
}
.pagination a:hover { background: #2C4A3E; color: #fff; border-color: #2C4A3E; }
.pagination .current { background: #2C4A3E; color: #fff; border-color: #2C4A3E; }
.pagination-ellipsis {
    border: none !important;
    background: transparent !important;
    color: #4D4742 !important;
    min-width: 24px !important;
}
.pagination-prev, .pagination-next {
    width: auto !important;
    padding: 0 16px;
    gap: 6px;
    text-decoration: none;
}
.pagination-label {
    font-size: 0.82rem;
}
@media (max-width: 480px) {
    .pagination-label { display: none; }
    .pagination-prev, .pagination-next { padding: 0 12px; }
}

/* --- Footer --- */
.site-footer {
    background: #1A2E26;
    color: #C8C0B0;
    padding: 64px 0 0;
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
}
.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.footer-tagline { font-size: 0.95rem; margin-bottom: 8px; color: #D4A853; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; }
.footer-col h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #D4A853;
    margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #C8C0B0; font-size: 0.9rem; }
.footer-links a:hover { color: #D4A853; }
.footer-nap p { margin-bottom: 6px; font-size: 0.9rem; }
.footer-nap a { color: #C8C0B0; }
.footer-nap a:hover { color: #D4A853; }
.footer-social { display: flex; gap: 16px; margin-top: 16px; }
.footer-social a {
    width: 44px; height: 44px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #C8C0B0;
    transition: all 0.2s;
}
.footer-social a:hover { background: #D4A853; color: #1A2E26; border-color: #D4A853; }

/* Social media icons in footer */
.footer-social-media { margin-top: 20px; }
.footer-social-media h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #D4A853;
    margin-bottom: 20px;
}
.social-icons { display: flex; gap: 10px; }
.social-icons a {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: #2C4A3E;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.2s;
    border: 2px solid transparent;
}
.social-icons a:hover {
    background: var(--social-color, #D4A853);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-bottom a { color: #D4A853; }
.footer-bottom a:hover { text-decoration: underline; }
@media (max-width: 768px) {
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-left { justify-content: center; }
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .fade-up { opacity: 1; transform: none; }
    .hero-scroll { display: none; }
    .site-nav { transition: none; }
    .hamburger span { transition: none; }

    .nav-backdrop { transition: none; }
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, #2C4A3E 0%, #1A2E26 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: #C8C0B0; margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* --- Dojazd Map --- */
.map-embed { border-radius: 12px; overflow: hidden; margin: 24px 0; }
.map-embed iframe { width: 100%; height: 400px; border: 0; display: block; }
.distance-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.contact-info-card,
.distance-item {
    background: #EFECE5;
    border: 1px solid #DDD8CE;
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.contact-info-card { margin: 32px 0; }
.contact-info-card:hover,
.distance-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.distance-item {
    padding: 20px;
    text-align: center;
}
.distance-item h4 { font-family: 'Inter', sans-serif; font-size: 0.9rem; margin-bottom: 4px; }
.distance-item span { font-size: 1.4rem; font-weight: 700; color: #2C4A3E; display: block; }
.distance-item small { color: #4D4742; font-size: 0.8rem; }
@media (max-width: 640px) {
    .distance-list { grid-template-columns: 1fr; }
}

/* --- Blog Post --- */
.post-hero {
    position: relative;
    min-height: 420px;
    background: #2C4A3E;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}
.post-hero-overlay {
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.1) 100%);
    padding: 80px 0 56px;
}
.post-hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.post-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    transition: color 0.2s;
}
.post-back-link:hover { color: #fff; }
.post-hero-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    flex-wrap: wrap;
}
.post-hero-author, .post-hero-date, .post-hero-reading {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.post-hero-sep { color: rgba(255,255,255,0.3); }
.post-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 12px;
}
.post-hero-excerpt {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 640px;
    line-height: 1.5;
}
.post-hero-tags { margin-top: 16px; }
.post-hero-tags .tag {
    color: #fff;
    background: rgba(255,255,255,0.15);
}
.post-body { padding: 48px 0 64px; }
.post-body-inner {
    max-width: 800px;
    margin: 0 auto;
}
.post-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2A2A2A;
}
.post-content p { margin-bottom: 20px; }
.post-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 12px;
    color: #2C4A3E;
}
.post-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    margin-top: 32px;
    margin-bottom: 8px;
    color: #2C4A3E;
}
.post-content ul, .post-content ol { margin-bottom: 20px; padding-left: 24px; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: 6px; }
.post-content blockquote {
    border-left: 3px solid #D4A853;
    padding: 16px 24px;
    margin: 24px 0;
    background: #F5F3EF;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #4A4A4A;
}
.post-content img { border-radius: 12px; margin: 24px 0; max-width: 100%; height: auto; }
.post-content a { color: #2C4A3E; text-decoration: underline; }

.post-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #E8E4DC;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.post-share {
    display: flex;
    align-items: center;
    gap: 8px;
}
.post-share-label {
    font-size: 0.85rem;
    color: #4D4742;
    font-weight: 500;
}
.post-share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #DDD8CE;
    color: #2C4A3E;
    transition: all 0.2s;
    background: #fff;
    cursor: pointer;
    position: relative;
}
.post-share-link:hover { background: #2C4A3E; color: #fff; border-color: #2C4A3E; }
.post-share-copied {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    background: #2C4A3E;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s;
}
.post-share-copy.copied .post-share-copied { opacity: 1; }

.post-prevnext {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #E8E4DC;
}
.post-prevnext-link {
    display: block;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #E8E4DC;
    transition: all 0.2s;
    background: #fff;
}
.post-prevnext-link:hover { border-color: #2C4A3E; box-shadow: 0 2px 12px rgba(44,74,62,0.08); }
.post-prevnext-next { text-align: right; }
.post-prevnext-direction {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4D4742;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.post-prevnext-title {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: #2C4A3E;
    line-height: 1.3;
}
@media (max-width: 768px) {
    .post-hero { min-height: 320px; }
    .post-hero-overlay { padding: 60px 0 40px; }
    .post-hero h1 { font-size: 2rem; }
    .post-hero-excerpt { font-size: 1rem; }
    .post-body { padding: 32px 0 48px; }
    .post-content { font-size: 1rem; }
    .post-footer { flex-direction: column; align-items: flex-start; }
    .post-prevnext { grid-template-columns: 1fr; }
    .post-prevnext-next { text-align: left; }
}

/* --- Nav backdrop --- */
.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.nav-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
}
body.nav-open {
    overflow: hidden;
}

/* --- Room filters --- */
.room-filters {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 32px;
    padding: 20px;
    background: #fff;
    border: 1px solid #DDD8CE;
    border-radius: 12px;
}
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.filter-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4D4742;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.filter-group select {
    padding: 8px 12px;
    border: 1px solid #DDD8CE;
    border-radius: 8px;
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #1E1E1E;
    cursor: pointer;
    min-width: 140px;
}
.filter-group select:focus {
    outline: none;
    border-color: #D4A853;
}

/* --- Language switcher --- */
.lang-switch {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #D4A853 !important;
    border: 1.5px solid rgba(212,168,83,0.5);
    padding: 10px 14px;
    min-height: 44px;
    border-radius: 8px;
    transition: all 0.2s;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
}
.site-header.scrolled .lang-switch {
    color: #D4A853 !important;
    border-color: #D4A853;
    background: rgba(0,0,0,0.05);
}
.lang-switch:hover {
    background: #D4A853;
    color: #000000 !important;
    border-color: #D4A853;
}
.lang-switch:active,
.lang-switch:focus-visible {
    background: #c49a48;
    color: #000000 !important;
    border-color: #c49a48;
    outline: none;
    outline-offset: 2px;
}

/* --- Cookie banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: #1A2E26;
    color: #C8C0B0;
    padding: 20px 24px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cookie-banner p { font-size: 0.9rem; line-height: 1.5; max-width: 700px; }
.cookie-banner a { color: #D4A853; text-decoration: underline; }
.cookie-banner a:hover { color: #fff; }
.cookie-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-banner .btn { padding: 10px 22px; font-size: 0.85rem; }
@media (max-width: 640px) {
    .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
}

/* --- 404 --- */
.page-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px;
    background: #F8F6F3;
    position: relative;
}
.page-404-inner {
    text-align: center;
    max-width: 560px;
}
.page-404-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14rem;
    line-height: 1;
    font-weight: 700;
    color: #D4A853;
    letter-spacing: -6px;
    margin-bottom: 0;
    user-select: none;
    opacity: 0.85;
}
.page-404-divider {
    width: 60px;
    height: 2px;
    background: #2C4A3E;
    margin: 24px auto 28px;
    border-radius: 1px;
}
.page-404-message {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: #4A4A4A;
    line-height: 1.6;
    margin-bottom: 40px;
    font-style: italic;
}
.page-404-btn.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
@media (max-width: 768px) {
    .page-404-number { font-size: 9rem; letter-spacing: -4px; }
    .page-404-message { font-size: 1.15rem; }
    .page-404 { padding: 100px 20px; }
}

/* --- Quick wins: USP color-coded icons --- */
.usp-item:nth-child(1) i { color: #6B9E75; }
.usp-item:nth-child(2) i { color: #D4A853; }
.usp-item:nth-child(3) i { color: #8B9BB4; }
.usp-item:nth-child(4) i { color: #C49A6C; }
.usp-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    margin-bottom: 12px;
    font-size: 1.3rem;
    transition: transform 0.3s ease, background 0.3s ease;
}
.usp-item:hover i {
    transform: scale(1.1);
    background: rgba(255,255,255,0.15);
}

/* --- Host Introduction --- */
.host-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}
.host-image {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    max-height: 520px;
    background: #EFECE5;
    position: relative;
}
.host-image img { width: 100%; height: 100%; object-fit: cover; }
.host-quote {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26,46,38,0.85));
    padding: 48px 24px 24px;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.5;
}
.host-content h2 { margin-bottom: 16px; }
.host-content .host-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2C4A3E;
    margin-bottom: 4px;
}
.host-content .host-role {
    font-size: 0.85rem;
    color: #7A5C3A;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}
.host-content p { margin-bottom: 14px; color: #4A4440; line-height: 1.8; }
.host-signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #2C4A3E;
    margin-top: 16px;
}
@media (max-width: 768px) {
    .host-grid { grid-template-columns: 1fr; gap: 32px; }
    .host-image { aspect-ratio: 4/3; max-height: none; }
}

/* --- Guest Reviews --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: #fff;
    border: 1px solid #E8E4DC;
    border-radius: 16px;
    padding: 28px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.review-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.review-stars {
    color: #D4A853;
    font-size: 0.9rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #3D3D3D;
    margin-bottom: 20px;
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #2C4A3E;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.review-name { font-weight: 600; color: #1E1E1E; font-size: 0.95rem; }
.review-meta { font-size: 0.8rem; color: #7A5C3A; }
@media (max-width: 900px) {
    .reviews-grid { grid-template-columns: 1fr; }
}

/* --- FAQ Accordion --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border: 1px solid #E8E4DC;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: box-shadow 0.3s ease;
}
.faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1E1E1E;
    cursor: pointer;
    gap: 16px;
    list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question i {
    color: #7A5C3A;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
details[open] .faq-question i { transform: rotate(180deg); }

.faq-answer {
    padding: 0 24px 20px;
}
.faq-answer p {
    color: #4A4440;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* --- What Guests Love (Testimonials strip) --- */
.guest-loves-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.guest-love-card {
    background: #fff;
    border: 1px solid #E8E4DC;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.guest-love-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.guest-love-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #F8F6F1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #2C4A3E;
    font-size: 1.3rem;
}
.guest-love-card:nth-child(1) .guest-love-icon { color: #6B9E75; }
.guest-love-card:nth-child(2) .guest-love-icon { color: #D4A853; }
.guest-love-card:nth-child(3) .guest-love-icon { color: #8B9BB4; }
.guest-love-card:nth-child(4) .guest-love-icon { color: #C49A6C; }
.guest-love-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #3D3D3D;
    line-height: 1.5;
    margin-bottom: 12px;
}
.guest-love-author {
    font-size: 0.82rem;
    color: #7A5C3A;
    font-weight: 500;
}
@media (max-width: 900px) {
    .guest-loves-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .guest-loves-grid { grid-template-columns: 1fr; }
}

/* --- Video Tour Placeholder --- */
.video-section {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    max-height: 520px;
    background: #1A2E26;
    cursor: pointer;
}
.video-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.4s ease, transform 0.6s ease;
}
.video-section:hover img {
    opacity: 0.5;
    transform: scale(1.03);
}
.video-play {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(212,168,83,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A2E26;
    font-size: 1.8rem;
    transition: transform 0.3s ease, background 0.3s ease;
    margin-bottom: 16px;
}
.video-section:hover .video-play-btn {
    transform: scale(1.1);
    background: #D4A853;
}
.video-play-label {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.video-play-sub {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* --- Room urgency badges --- */
.room-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    z-index: 2;
}
.room-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}
.room-badge-popular { background: #D4A853; color: #1A2E26; }
.room-badge-family { background: #6B9E75; color: #fff; }
.room-badge-limited { background: #C75B5B; color: #fff; }
.room-badge-couple { background: #8B9BB4; color: #fff; }
.card-image { position: relative; }

/* --- Instagram Strip --- */
.instagram-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.instagram-strip::-webkit-scrollbar { height: 4px; }
.instagram-strip::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }
.instagram-item {
    flex: 0 0 140px;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    scroll-snap-align: start;
    position: relative;
    background: #2C4A3E;
}
.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.instagram-item:hover img { transform: scale(1.02); will-change: transform; }
.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.instagram-item:hover .instagram-overlay { opacity: 1; }
.instagram-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}
.instagram-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #D4A853;
}
.instagram-header a {
    font-size: 0.85rem;
    color: #D4A853;
}
.instagram-header a:hover { color: #fff; }

/* --- Amenity icon grid with tooltips --- */
.amenity-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.amenity-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
    background: #fff;
    border: 1px solid #E8E4DC;
    border-radius: 12px;
    text-align: center;
    cursor: default;
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.amenity-icon-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.amenity-icon-item i {
    font-size: 1.4rem;
    color: #2C4A3E;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8F6F1;
    border-radius: 10px;
}
.amenity-icon-label {
    font-size: 0.8rem;
    color: #4A4440;
    line-height: 1.3;
}
.amenity-icon-item .tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #1A2E26;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10;
}
.amenity-icon-item .tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1A2E26;
}
.amenity-icon-item:hover .tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
@media (max-width: 768px) {
    .amenity-icon-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
    .amenity-icon-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Utility --- */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }

/* --- Content cards (oferta page) --- */
.content-amenities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0;
}
.content-amenities li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}
.content-amenities li i { color: #2C4A3E; }

/* --- Swiper overrides --- */
.swiper-pagination-bullet { background: rgba(255,255,255,0.5); opacity: 1; }
.swiper-pagination-bullet-active { background: #D4A853; width: 24px; border-radius: 4px; }
.swiper-button-next, .swiper-button-prev { color: #fff; }

/* --- Back to top button (desktop only) --- */
.back-to-top {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2C4A3E;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.2);
    cursor: pointer;
    z-index: 100;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.back-to-top:hover {
    background: #D4A853;
    color: #1A2E26;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
@media (min-width: 769px) {
    .back-to-top {
        display: flex;
    }
}

/* --- CTA banner between sections --- */
.cta-banner {
    background: linear-gradient(135deg, #1A2E26 0%, #2C4A3E 100%);
    color: #fff;
    padding: 64px 24px;
    text-align: center;
    border-radius: 12px;
    margin: 48px 0;
}
.cta-banner h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 16px;
}
.cta-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 28px;
}

/* --- Availability Section --- */
.availability-note {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(212,168,83,0.3);
    border-radius: 12px;
    padding: 16px 24px;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #C8C0B0;
    font-size: 0.95rem;
}
.availability-note i {
    color: #D4A853;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.availability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto 32px;
}
.availability-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.availability-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
    border-color: rgba(212,168,83,0.4);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.availability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #D4A853;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.availability-card:hover::before {
    opacity: 1;
}
.availability-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(212,168,83,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: #D4A853;
    font-size: 1.3rem;
}
.availability-card-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
}
.availability-card-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2e7d32;
    background: #e8f5e9;
    padding: 4px 14px;
    border-radius: 100px;
}
@media (max-width: 768px) {
    .availability-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .availability-card {
        padding: 20px 14px;
    }
}
@media (max-width: 480px) {
    .availability-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Mobile sticky call button --- */

.mobile-call-btn i { margin-right: 8px; }
@media (max-width: 768px) {
    .mobile-call-btn { display: flex; align-items: center; justify-content: center; }
    body.has-mobile-call-btn { padding-bottom: 56px; }
}

/* --- Skeleton loading for images --- */
.skeleton {
    background: linear-gradient(90deg, #EFECE5 25%, #F5F3EE 50%, #EFECE5 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}
@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* --- Contact map --- */
.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

/* --- Regulamin page --- */
.regulamin-content { max-width: 800px; margin: 0 auto; }
.regulamin-toc {
    background: #EFECE5;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 32px;
    position: sticky;
    top: 80px;
    z-index: 5;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}
.regulamin-toc h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #2C4A3E;
}
.regulamin-toc ul { list-style: none; padding: 0; }
.regulamin-toc li { margin-bottom: 8px; }
.regulamin-toc a {
    font-size: 0.9rem;
    color: #4D4742;
    transition: color 0.2s;
    display: block;
    padding: 2px 0;
}
.regulamin-toc a:hover { color: #2C4A3E; }
.regulamin-toc a.active { color: #2C4A3E; font-weight: 600; border-left: 3px solid #D4A853; padding-left: 8px; }
@media (min-width: 1024px) {
    .regulamin-layout {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 48px;
        align-items: start;
    }
    .regulamin-toc {
        margin-bottom: 0;
    }
}
@media (max-width: 1023px) {
    .regulamin-toc {
        position: static;
        max-height: none;
        overflow-y: visible;
        margin-bottom: 24px;
        font-size: 0.85rem;
    }
    .regulamin-toc h3 { font-size: 0.9rem; margin-bottom: 8px; }
    .regulamin-toc a { font-size: 0.82rem; padding: 1px 0; }
    .regulamin-toc li { margin-bottom: 4px; }
    .regulamin-section { scroll-margin-top: 90px; }
}
.regulamin-section { margin-bottom: 48px; scroll-margin-top: 100px; }
.regulamin-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1E1E1E;
}
.regulamin-section p,
.regulamin-section ul {
    font-size: 1rem;
    line-height: 1.8;
    color: #4A4A4A;
    margin-bottom: 12px;
}
.regulamin-section ul { list-style: disc; padding-left: 24px; }
.regulamin-section ul li { margin-bottom: 10px; }
.regulamin-section a { color: #2C4A3E; text-decoration: underline; }

/* --- Glightbox fullscreen image border --- */
.gslide-image img {
    border: 4px solid #fff;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* --- Welcome Poster --- */
.welcome-poster-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 20px;
}
.welcome-poster-overlay.visible {
    opacity: 1;
    visibility: visible;
}
.welcome-poster-modal {
    background: #fff;
    border-radius: 20px;
    max-width: 580px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 48px 40px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s ease;
}
.welcome-poster-overlay.visible .welcome-poster-modal {
    transform: translateY(0) scale(1);
}
.welcome-poster-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #F5F3EE;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: #4A4440;
    transition: background 0.2s;
}
.welcome-poster-close:hover {
    background: #E8E4DC;
}
.welcome-poster-content {
    text-align: center;
}
.welcome-poster-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #D4A853;
    margin-bottom: 8px;
}
.welcome-poster-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1A2E26;
    margin-bottom: 12px;
}
.welcome-poster-subtitle {
    font-size: 0.95rem;
    color: #6B6560;
    margin-bottom: 24px;
    line-height: 1.5;
}
.welcome-poster-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #F8F6F1;
    border: 1px solid #E8E4DC;
    border-radius: 12px;
    padding: 14px 20px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: #4A4440;
}
.welcome-poster-note i {
    color: #D4A853;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.welcome-poster-dates {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}
.welcome-poster-date {
    background: #F8F6F1;
    border: 1px solid #E8E4DC;
    border-radius: 12px;
    padding: 20px 14px;
    text-align: center;
    transition: all 0.3s ease;
}
.welcome-poster-date:hover {
    border-color: #D4A853;
    box-shadow: 0 4px 12px rgba(212,168,83,0.15);
}
.welcome-poster-date i {
    display: block;
    font-size: 1.4rem;
    color: #D4A853;
    margin-bottom: 10px;
}
.welcome-poster-date span {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1E1E1E;
    margin-bottom: 8px;
    line-height: 1.4;
}
.welcome-poster-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2e7d32;
    background: #e8f5e9;
    padding: 3px 12px;
    border-radius: 100px;
}
@media (max-width: 480px) {
    .welcome-poster-modal {
        padding: 36px 24px 28px;
    }
    .welcome-poster-title {
        font-size: 1.4rem;
    }
    .welcome-poster-dates {
        grid-template-columns: 1fr;
    }
}
