:root {
    /* Podmień pod obiekt */
    --primary-color: #4a3526;
    --secondary-color: #e3933d;
    --accent-color: #b8742a;

    --light-color: #ffffff;
    --gray-light: #f7e4cf;
    --gray-medium: #4a5568;
    --gray-dark: #1a202c;

    --button-green: #e3933d;
    --border-radius: 18px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.25s ease;
}

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

body {
    font-family: 'Raleway', Arial, sans-serif;
    color: var(--gray-dark);
    background: var(--light-color);
    line-height: 1.6;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 8px;
    padding: 8px 10px;
    border-radius: 6px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    z-index: 2000;
}

.skip-to-content:focus {
    top: 8px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 78px;
}

.logo {
    max-height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
}

.nav-links a {
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-lang-single {
    display: flex;
    align-items: center;
}

.lang-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid #d9e1ec;
    border-radius: 999px;
    padding: 0.28rem 0.55rem;
    line-height: 1;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gray-dark);
    text-decoration: none;
}

.lang-chip.is-active {
    background: #f4f7fb;
}

.lang-code {
    letter-spacing: 0.04em;
}

.lang-flag {
    width: 16px;
    height: 12px;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    display: inline-block;
    flex: 0 0 16px;
}

.flag-cz {
    background:
        linear-gradient(150deg, transparent 50%, #d7141a 50%),
        linear-gradient(30deg, #11457e 50%, transparent 50%),
        linear-gradient(to bottom, #ffffff 50%, #d7141a 50%);
}

.flag-pl {
    background: linear-gradient(to bottom, #ffffff 50%, #dc143c 50%);
}


.nav-reserve {
    background: var(--button-green);
    color: #fff !important;
    padding: 10px 16px;
    border-radius: 999px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gray-dark);
}

.hero {
    margin-top: 78px;
    min-height: 82vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: visible;
    z-index: 5;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 13, 20, 0.6), rgba(8, 13, 20, 0.55));
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(920px, 92%);
    margin: 0 auto;
    overflow: visible;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.hero-tagline {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(36, 54, 115, 0.9), rgba(31, 45, 58, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-weight: 700;
}

.hero-description {
    max-width: 900px;
    margin: 0 auto;
    padding: 0.9rem 1.1rem;
    border-radius: 12px;
    background: rgba(7, 12, 20, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-description strong {
    color: var(--secondary-color);
}

.hero-cta {
    margin-top: 2rem;
}

.hero-cta .btn {
    margin-top: 0;
}

.iai-search {
    position: relative;
    z-index: 50;
    overflow: visible;
}

#iai_booking_data1,
#iai_booking_data2,
#iaicalendar {
    z-index: 9999 !important;
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    text-align: center;
    margin-bottom: 1.4rem;
    color: var(--primary-color);
}

.section-divider {
    width: 180px;
    height: 2px;
    margin: 0 auto 2rem;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

section {
    padding: 84px 0;
}

.trust-strip {
    border-bottom: 1px solid #e6edf7;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.7rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f7faff;
    border: 1px solid #dce7f4;
    border-radius: 12px;
    padding: 0.6rem 0.8rem;
    font-size: 0.92rem;
    font-weight: 600;
}

.trust-item i {
    color: var(--accent-color);
}

.about,
.features,
.amenities-highlight,
.reviews,
.reservation,
.page-header,
.policy-page,
.contact-page {
    scroll-margin-top: 92px;
}

.about {
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.cta-text {
    margin-top: 1rem;
    text-align: center;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(125, 34, 72, 0.3);
    background: linear-gradient(135deg, rgba(217, 79, 112, 0.12), rgba(125, 34, 72, 0.14));
}

.features {
    background: var(--gray-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.feature-card {
    border-radius: var(--border-radius);
    padding: 1.2rem;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid #ead6de;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.feature-card h3 {
    margin-bottom: 0.55rem;
    font-size: 1.03rem;
}

.feature-card p {
    color: var(--gray-medium);
    line-height: 1.55;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.7rem;
    color: var(--accent-color);
}

.amenities-highlight {
    background: #fff7fa;
}

.amenities-score {
    text-align: center;
    margin-bottom: 1rem;
}

.amenities-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.8rem;
}

.amenity-chip {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid #efd3dc;
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
}

.amenity-chip i {
    color: var(--accent-color);
}

.amenities-cta {
    text-align: center;
    margin-top: 1.7rem;
}

.reviews {
}

.reviews-header {
    text-align: center;
}

.reviews-score-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.reviews-score-text {
    display: block;
    color: var(--gray-medium);
}

.booking-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #003580, #0057b8);
    color: #fff;
    font-size: 0.92rem;
}

.reviews-proof {
    margin-top: 0.7rem;
    color: var(--gray-medium);
    font-size: 0.92rem;
}

.demand-note {
    margin-top: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    background: #fff3f7;
    border: 1px solid #f1c7d7;
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    color: var(--accent-color);
}

.reviews-categories-panel {
    margin-top: 1.3rem;
    border: 1px solid #dce6f3;
    border-radius: 14px;
    padding: 0;
}

.reviews-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.review-subscore {
    background: #f8fbff;
    border: 1px solid #dce6f3;
    border-radius: 12px;
    padding: 0.65rem;
}

.review-subscore-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.45rem;
}

.review-subscore-meter {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: #e7edf6;
    overflow: hidden;
}

.review-subscore-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.9rem;
    margin-top: 1rem;
}

.review-card {
    border: 1px solid #e7edf6;
    border-radius: 12px;
    padding: 0.9rem;
}

.reservation {
    background: var(--gray-light);
    text-align: center;
}

.reservation-widget {
    margin-top: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 0;
}

.reservation-contact {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.reservation-contact p {
    margin-bottom: 0;
}

.privacy-note {
    margin-top: 0.9rem;
    color: var(--gray-medium);
    font-size: 0.88rem;
}

.privacy-note a {
    color: var(--accent-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    min-height: 44px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.3rem;
}

.btn-primary {
    background: var(--secondary-color);
    color: #fff;
}

.page-header {
    margin-top: 78px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    text-align: center;
    padding: 70px 0 42px;
}

.page-subtitle {
    color: #dbe5f7;
}

.policy-page,
.contact-page {
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-intro {
    background: var(--gray-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 12px;
    padding: 0;
    margin-bottom: 1.4rem;
}

.policy-section {
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.policy-section:last-child {
    border-bottom: 0;
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.7rem;
}

.policy-section p,
.policy-section li {
    color: var(--gray-medium);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.contact-item {
    margin-bottom: 1.2rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid #edf2f7;
}

.contact-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

input,
textarea,
select {
    width: 100%;
    margin-bottom: 0.85rem;
    padding: 0.72rem 0.85rem;
    border: 1px solid #d9e1ec;
    border-radius: 10px;
    font: inherit;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.map-container iframe {
    width: 100%;
    border: 0;
    min-height: 320px;
    border-radius: 12px;
}

footer {
    background: #1a1a1a;
    color: #dce3ee;
    padding: 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-bottom: 1.3rem;
}

.footer-column h3 {
    color: var(--secondary-color);
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: #dce3ee;
    text-decoration: none;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.4rem;
}

.footer-bottom,
.footer-part-of {
    text-align: center;
    font-size: 0.92rem;
}

.footer-link {
    color: var(--secondary-color) !important;
}

.floating-buttons {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1001;
    display: flex;
    gap: 8px;
}

.floating-btn {
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 10px 14px;
    color: #fff;
    background: var(--button-green);
}

.floating-btn--call {
    background: #1476ff;
}

/* Shared feature-highlight component (IND.U: Lobby / Sunday: Pool-SPA) */
.feature-highlight {
    background: #f8fbff;
}

.feature-highlight .about-content {
    margin-bottom: 0;
}

.partner-model {
}

.partner-model .features-grid {
    margin-top: 1.2rem;
}

.proof-cta {
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

.proof-cta .btn {
    min-width: 220px;
    justify-content: center;
}

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

    .about-content,
    .contact-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: calc(100svh - 78px);
        padding: 96px 0 46px;
    }

    .hero-content {
        width: min(940px, 94%);
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
        line-height: 1.12;
        margin-bottom: 0.7rem;
        word-break: break-word;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        width: 100%;
        padding: 0;
            box-shadow: var(--shadow);
        flex-direction: column;
        gap: 0.4rem;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 0.72rem 0.9rem;
        border: 1px solid #e6edf7;
        border-radius: 12px;
    }

    .nav-links.active {
        display: flex;
    }

    nav.container {
        position: relative;
    }

    .floating-buttons {
        flex-direction: column;
    }

    .reservation-contact .btn {
        width: 100%;
        justify-content: center;
    }

    .proof-cta {
        flex-direction: column;
    }

    .proof-cta .btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(1.85rem, 8.8vw, 2.4rem);
        line-height: 1.1;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 0;
    }
}

/* === Owner prelaunch revamp (GEA/Jantarowa) === */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.proof-card {
    border-radius: 16px;
    padding: 1.15rem;
    border: 1px solid #dbe3f1;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}

.proof-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.55rem;
}

.proof-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.18rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(15, 23, 42, 0.08);
}

.proof-score {
    font-weight: 800;
    font-size: 0.95rem;
}

.proof-card h3 {
    margin-bottom: 0.4rem;
}

.proof-meta {
    margin-top: 0.65rem;
    font-size: 0.78rem;
    font-weight: 700;
    opacity: 0.9;
}

.proof-card--indu {
    background: linear-gradient(160deg, #f0f7ff 0%, #ffffff 70%);
    border-color: #b8d7ff;
}

.proof-card--indu .proof-score,
.proof-card--indu .proof-meta { color: #0047ab; }

.proof-card--sunday {
    background: linear-gradient(160deg, #fff8ec 0%, #ffffff 70%);
    border-color: #f3d9a5;
}

.proof-card--sunday .proof-score,
.proof-card--sunday .proof-meta { color: #9a6100; }

.proof-card--owner {
    background: linear-gradient(160deg, #eefdf3 0%, #ffffff 70%);
    border-color: #bdeecf;
}

.proof-card--owner .proof-score,
.proof-card--owner .proof-meta { color: #147a3f; }

.process-section .process-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.process-step {
    position: relative;
    border: 1px solid #d9e5f4;
    border-radius: 16px;
    background: linear-gradient(165deg, #ffffff, #f8fbff);
    padding: 0.95rem 0.85rem;
    min-height: 190px;
}

.process-step:not(:last-child)::after {
    content: "\2192";
    position: absolute;
    right: -0.9rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.8rem;
    height: 1.8rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    z-index: 2;
}

.process-step:nth-child(4)::after {
    content: "\2193";
    right: 50%;
    top: auto;
    bottom: -0.95rem;
    transform: translateX(50%);
}

.process-step h3 {
    margin-top: 0.35rem;
    font-size: 0.98rem;
}

.process-step p {
    margin-top: 0.35rem;
    font-size: 0.84rem;
    line-height: 1.45;
}

.faq-accordion {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 0.7rem;
}

.faq-item {
    border: 1px solid #d8e1ef;
    border-radius: 14px;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    cursor: pointer;
    padding: 0.95rem 1rem;
    font-weight: 700;
    color: #0f172a;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary i {
    transition: transform 0.2s ease;
    color: #4b5563;
}

.faq-item[open] summary i {
    transform: rotate(180deg);
}

.faq-item p {
    padding: 0 1rem 1rem;
    color: #334155;
    font-size: 0.94rem;
}

.reviews--launch .launch-progress-card {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #dbe5f4;
    border-radius: 16px;
    background: linear-gradient(160deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    padding: 1.15rem;
}

.launch-progress-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
}

.launch-progress-head p {
    margin-top: 0.2rem;
    color: #475569;
    font-size: 0.9rem;
}

.launch-progress-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
}

.launch-progress-bar {
    margin-top: 0.85rem;
    width: 100%;
    height: 12px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.launch-progress-fill {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #f59e0b 0%, #f97316 45%, #ef4444 100%);
}

.launch-checklist {
    list-style: none;
    margin-top: 0.9rem;
    display: grid;
    gap: 0.45rem;
}

.launch-checklist li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e293b;
    font-weight: 600;
}

.launch-checklist i { color: #16a34a; }

.launch-note {
    margin-top: 0.8rem;
    font-size: 0.88rem;
    color: #334155;
}

@media (max-width: 1100px) {
    .process-section .process-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-step:not(:last-child)::after {
        content: "\2193";
        right: 50%;
        top: auto;
        bottom: -0.9rem;
        transform: translateX(50%);
        width: 1.8rem;
        height: 1.8rem;
        font-size: 1rem;
    }
}

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

    .process-section .process-flow {
        grid-template-columns: 1fr;
    }

    .process-step {
        min-height: auto;
    }
}


/* === Team highlight module === */
.team-highlight {
    padding: 70px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.team-highlight-card {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 1.2rem;
    align-items: center;
    padding: 0;
}

.team-highlight-photo img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    border-radius: 14px;
}

.team-highlight-content h2 {
    color: var(--primary-color);
    margin-bottom: 0.55rem;
}

.team-highlight-content p {
    color: #334155;
    margin-bottom: 0.9rem;
}

.team-highlight-content .company-facts {
    margin: 0.9rem 0 1rem;
    padding: 0.9rem 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.team-highlight-content .company-facts p {
    margin: 0.3rem 0;
}

.team-highlight-content .company-name {
    color: #0f172a;
    line-height: 1.4;
}

.team-highlight-content .company-meta,
.team-highlight-content .company-address {
    font-size: 0.95rem;
    color: #334155;
}

.team-highlight-content .company-link a {
    font-weight: 700;
}

@media (max-width: 900px) {
    .team-highlight-card {
        grid-template-columns: 1fr;
    }

    .team-highlight-photo img {
        min-height: 200px;
    }
}


/* === Direct contact module === */
.reservation--contact .contact-direct-card {
    max-width: 860px;
    margin: 0 auto;
    border: 1px solid #dbe5f4;
    border-radius: 16px;
    background: linear-gradient(165deg, #ffffff, #f7fbff);
    padding: 1.1rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    text-align: center;
}

.reservation--contact .contact-direct-lead {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.reservation--contact .contact-direct-actions {
    margin-top: 0.8rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
}

@media (max-width: 700px) {
    .reservation--contact .contact-direct-card {
        padding: 0.95rem;
    }

    .reservation--contact .contact-direct-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .reservation--contact .contact-direct-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
