/* ============================================
   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: #8B6B47; }
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.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #8B6B47;
    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 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    transition: color 0.3s;
}
.site-logo:hover { color: #D4A853 !important; }
.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); }

@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; }
    .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;
    background-size: cover;
    background-position: center;
}
.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 20px 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;
}
.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: #EFECE5;
    border: 1px solid #DDD8CE;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #DDD8CE;
}
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-image img { transform: scale(1.05); }
.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 8px; }
.card-meta { display: flex; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.card-meta span {
    font-size: 0.8rem;
    color: #6B6560;
    background: #F8F6F1;
    padding: 3px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.card-meta span i { color: #8B6B47; }
.card-price {
    font-weight: 700;
    color: #2C4A3E;
    font-size: 1.2rem;
    margin-top: 12px;
}
.card-price small {
    font-weight: 400;
    font-size: 0.85rem;
    color: #6B6560;
}
.card-link {
    display: inline-block;
    margin-top: 12px;
    font-weight: 600;
    color: #2C4A3E;
}

/* Grid helpers */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@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: #6B6560;
    background: #EFECE5;
    padding: 6px 14px;
    border-radius: 999px;
}
.room-stat i { color: #8B6B47; 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: 48px; }
.room-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    border-radius: 12px;
    overflow: hidden;
    max-height: 520px;
    background: #EFECE5;
}
.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.4s ease;
}
.room-gallery-item:hover img { transform: scale(1.03); }
.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: 1.2rem;
    font-weight: 600;
    pointer-events: none;
}
/* Single photo */
.room-gallery-count-1 { grid-template-columns: 1fr; grid-template-rows: 1fr; max-height: 420px; }
.room-gallery-count-1 .room-gallery-item:first-child { grid-row: auto; }
/* Two photos */
.room-gallery-count-2 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; max-height: 420px; }
.room-gallery-count-2 .room-gallery-item:first-child { grid-row: auto; }

/* Room Layout */
.room-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
.room-main { min-width: 0; }
.room-section { margin-bottom: 48px; }
.room-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #1E1E1E;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #DDD8CE;
}
.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 16px;
    text-align: 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.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8B6B47;
    margin-bottom: 4px;
}
.room-feature-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1E1E1E;
}
.room-feature-value small { font-weight: 400; color: #6B6560; font-size: 0.85rem; }

/* 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: #6B6560;
}
.room-price-note {
    font-size: 0.82rem;
    color: #8B6B47;
    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: #8B6B47;
}
.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.78rem;
    color: #2C4A3E;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.room-booking-tag i { color: #8B6B47; 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.78rem;
    color: #8B6B47;
    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.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8B6B47;
}
.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: #8B6B47;
    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; }
    .room-sidebar { position: static; margin-top: 32px; }
    .room-gallery { max-height: 320px; }
    .room-features-grid { grid-template-columns: repeat(2, 1fr); }
    .room-amenities-grid { grid-template-columns: 1fr; }
    .room-nav { flex-direction: column; align-items: stretch; }
    .room-nav-link { max-width: none; }
    .room-nav-next { text-align: left; align-items: flex-start; }
    .room-nav-all { text-align: center; order: -1; margin-bottom: 8px; }
    .room-stat { font-size: 0.85rem; padding: 5px 12px; }
}

/* --- 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: #6B6560;
    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: #6B6560;
}
.attraction-distance i { color: #8B6B47; }

/* --- 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.02); }
.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-error {
    background: #fce4ec;
    border: 1px solid #ef9a9a;
    color: #c62828;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}
.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; }
}

/* --- Breadcrumb --- */
.breadcrumb {
    padding: 100px 0 24px;
    font-size: 0.82rem;
    color: #6B6560;
}
.breadcrumb a { color: #6B6560; }
.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: #6B6560; margin-top: 16px; margin-bottom: 32px; }

/* --- Blog --- */
.blog-card .card-image { aspect-ratio: 16/9; }
.blog-meta { font-size: 0.82rem; color: #6B6560; margin-bottom: 8px; }

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}
.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    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; }

/* --- 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: 40px; height: 40px;
    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; }
.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) {
    .fade-up { opacity: 1; transform: none; }
    .hero-scroll { display: 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; }
.distance-item {
    background: #EFECE5;
    border: 1px solid #DDD8CE;
    border-radius: 10px;
    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: #6B6560; font-size: 0.8rem; }
@media (max-width: 640px) {
    .distance-list { grid-template-columns: 1fr; }
}

/* --- Blog Post --- */
.post-cover { border-radius: 12px; overflow: hidden; margin-bottom: 32px; }
.post-cover img { width: 100%; max-height: 500px; object-fit: cover; }
.post-content { max-width: 720px; }
.post-content p { margin-bottom: 16px; }
.post-content h2 { margin-top: 32px; margin-bottom: 12px; }
.post-content h3 { margin-top: 24px; margin-bottom: 8px; }
.post-content ul, .post-content ol { margin-bottom: 16px; 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: 12px 20px;
    margin: 20px 0;
    background: #EFECE5;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}
.post-content img { border-radius: 8px; margin: 16px 0; }

/* --- 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;
}

/* --- Language switcher --- */
.lang-switch {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #D4A853 !important;
    border: 1.5px solid rgba(212,168,83,0.5);
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s;
}
.site-header.scrolled .lang-switch {
    color: #D4A853 !important;
    border-color: #D4A853;
}
.lang-switch:hover {
    background: #D4A853;
    color: #1A2E26 !important;
}
.lang-switch:active,
.lang-switch:focus-visible {
    background: #c49a48;
    color: #1A2E26 !important;
    outline: none;
}

/* --- 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 { padding: 140px 24px 80px; }
.page-404-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.page-404-visual {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #EFECE5;
}
.page-404-visual img { width: 100%; height: 100%; object-fit: cover; }
.page-404-content h1 { font-size: 8rem; line-height: 1; color: #DDD8CE; margin-bottom: 8px; }
.page-404-content h2 { font-size: 2rem; margin-bottom: 12px; }
.page-404-content p { margin-bottom: 28px; color: #6B6560; font-size: 1.05rem; }
.page-404-links { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.page-404-rooms h3 { font-size: 1.1rem; margin-bottom: 12px; color: #2C4A3E; }
.page-404-rooms ul { list-style: none; }
.page-404-rooms li { margin-bottom: 8px; }
.page-404-rooms a { font-weight: 500; color: #2C4A3E; }
.page-404-rooms a:hover { color: #D4A853; }
@media (max-width: 768px) {
    .page-404-grid { grid-template-columns: 1fr; gap: 32px; }
    .page-404-content h1 { font-size: 5rem; }
    .page-404 { padding: 120px 20px 60px; }
}

/* --- 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; }
