/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: var(--spacing-md) 0;
    transition: background-color var(--transition-speed) ease, padding var(--transition-speed) ease;
}

.header.is-scrolled {
    background-color: rgba(17, 26, 20, 0.95);
    padding: var(--spacing-sm) 0;
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    z-index: 101;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #2b3d36;
    /* Dark olive green overlay */
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
}

.nav-topo-bg {
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    background-image: url('../../media/topo-bg.svg');
    background-size: cover;
    background-position: right center;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.nav-controls {
    position: absolute;
    top: var(--spacing-md);
    left: 0;
    right: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: var(--spacing-sm);
    z-index: 10;
}

.lang-switcher {
    display: flex;
    gap: var(--spacing-sm);
}

.lang-btn,
.menu-close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.lang-btn:hover,
.menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lang-btn.is-active {
    background: rgba(131, 75, 59, 0.8);
    /* Brownish */
}

.close-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.close-icon::before,
.close-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-text-light);
}

.close-icon::before {
    transform: rotate(45deg);
}

.close-icon::after {
    transform: rotate(-45deg);
}

.nav-content {
    position: relative;
    z-index: 1;
    margin: auto 0;
    padding: var(--spacing-xl) var(--spacing-md);
    width: 100%;
}

.nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-list {
    display: flex;
    flex-direction: column;
}

.nav-item-link {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(238, 231, 222, 0.3);
    font-family: var(--font-serif);
    font-size: 2.25rem;
    line-height: 1.2;
    color: var(--color-text-light);
    transition: opacity var(--transition-speed);
}

.nav-item-link:hover {
    opacity: 0.8;
}

.nav-text {
    max-width: 80%;
}

.nav-num {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(238, 231, 222, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.nav-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 4rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(80, 54, 44, 0.8);
    /* Brownish social bg */
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text-light);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    transition: background-color var(--transition-speed) ease;
}

.social-link:hover {
    background: rgba(80, 54, 44, 1);
}

/* Hamburger Menu (Always Visible on Desktop & Mobile) */
.menu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-accent);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 101;
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.menu-toggle:hover {
    background-color: #637772;
    /* Darker accent */
    transform: scale(1.05);
}

.hamburger {
    width: 20px;
    height: 2px;
    background-color: var(--color-text-light);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--color-text-light);
    left: 0;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    top: 6px;
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 24px;
    border: 1px solid var(--color-text-light);
    background: transparent;
    color: var(--color-text-light);
    cursor: pointer;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

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

/* Global Audio Button */
.global-audio-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(17, 26, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    z-index: 90;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform var(--transition-speed) ease, background-color var(--transition-speed) ease;
}

.global-audio-btn:hover {
    transform: scale(1.1);
    background-color: rgba(17, 26, 20, 0.9);
}

.audio-icon {
    width: 24px;
    height: 24px;
    background-image: url('../../media/unmute.svg');
    /* Path to SVG */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.global-audio-btn.is-muted .audio-icon {
    background-image: url('../../media/mute.svg');
    /* Assume there is a mute.svg, or use CSS */
}

/* Cards */
.card {
    padding: var(--spacing-md);
    border: 1px solid rgba(238, 231, 222, 0.1);
    background-color: rgba(255, 255, 255, 0.02);
    transition: transform var(--transition-speed) ease, background-color var(--transition-speed) ease;
}

.card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.05);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

/* Forms */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(238, 231, 222, 0.5);
    color: var(--color-text-light);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color var(--transition-speed) ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--color-text-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(238, 231, 222, 0.5);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px;
}

.checkbox-group label {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: rgba(238, 231, 222, 0.8);
}

/* Image Shapes & Layouts */
.blob-img {
    width: 100%;
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.blob-1 {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.blob-2 {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    aspect-ratio: 4/3;
}

.blob-3 {
    border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%;
    aspect-ratio: 3/4;
}

.rectangle-img {
    border-radius: 24px;
    border-top-left-radius: 100px;
    width: 100%;
    aspect-ratio: 4/3;
}

.square-img {
    border-radius: 20px;
    width: 100%;
    aspect-ratio: 1;
    background-size: cover;
}

.gallery-img {
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 1;
    background-size: cover;
}

.floating-circle {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--color-accent);
    z-index: 2;
}

/* Lists */
.bullet-list,
.icon-list {
    margin-top: var(--spacing-md);
}

.bullet-list li,
.icon-list li {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-left: 2rem;
}

.bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-accent);
}

.icon-list li {
    display: flex;
    align-items: center;
    padding-left: 0;
    gap: 1rem;
    font-size: 1.25rem;
}

.icon-bullet {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-accent);
    flex-shrink: 0;
}

/* Cards & Sections Specifics */
.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 1.5rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

.audit-card {
    padding: var(--spacing-lg);
    border-radius: 20px;
    border-top-left-radius: 80px;
}

.audit-card h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.map-illustration-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: url('../../media/topo-bg.svg') center/cover;
    opacity: 0.5;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-sans);
    letter-spacing: 0.1em;
}

/* Contact Details */
.contact-person {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.person-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.person-details {
    display: flex;
    flex-direction: column;
}

.person-details strong {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-text-dark);
}

.person-details a {
    font-family: var(--font-sans);
    color: var(--color-bg-brown);
}

/* Footer Additions */
.footer {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-topo-bg {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: url('../../media/topo-bg.svg') center/cover;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.footer-inner,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text-light);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    transition: background-color var(--transition-speed) ease;
}

.footer-socials a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(238, 231, 222, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: rgba(238, 231, 222, 0.6);
}

.footer-links a:hover {
    color: var(--color-text-light);
}

/* Responsive Components */
@media (max-width: 992px) {
    .nav-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .nav-item-link {
        font-size: 1.75rem;
        padding: 1rem 0;
    }

    .nav-topo-bg {
        width: 100%;
        right: 0;
    }

    .nav-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }

    .blob-img,
    .square-img,
    .gallery-img {
        max-width: 250px;
        margin: 0 auto;
    }

    .rectangle-img {
        max-width: 300px;
        margin: 0 auto;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
        margin-bottom: var(--spacing-sm);
    }

    .audit-card {
        padding: var(--spacing-md);
        border-top-left-radius: 40px;
    }

    .audit-card h3 {
        font-size: 1.5rem;
    }

    .person-photo {
        width: 60px;
        height: 60px;
    }

    .global-audio-btn {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* =========================================
   Section 2 – Poznaj Nature-Based Hospitality
   ========================================= */

.section-about {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
    background-color: #095A40;
}

/* Shared styles for both corner images */
.s2-img {
    position: absolute;
    width: 50%;
    height: auto;
    pointer-events: none;
    z-index: 0;
}

/* Top-left image */
.s2-img--tl {
    top: 0;
    left: 0;
    object-position: top left;
}

/* Bottom-right image */
.s2-img--br {
    bottom: 0;
    right: 0;
    object-position: bottom right;
}

/*
 * 12-column grid. Column positions (1-based) per Figma:
 *   s2-intro      → cols 7–11,  row 1   (top-right)
 *   s2-title      → cols 3–6,   row 2   (mid-left)
 *   s2-badge      → col  2,     row 2-3 (straddle)
 *   s2-definition → cols 1–5,   row 3   (bottom-left)
 */
.s2-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    position: relative;
    z-index: 1;
    grid-template-rows:
        auto
        /* row 1 – top text */
        auto
        /* row 2 – mid text */
        auto;
    /* row 3 – bottom text */
    column-gap: 24px;
    row-gap: var(--spacing-lg);
}

/* "Nowy standard gościnności…" — top-right */
.s2-intro {
    grid-column: 7 / 12;
    grid-row: 1 / 2;
}

.s2-intro .section-heading {
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
}

.s2-intro p {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(238, 231, 222, 0.8);
    margin-bottom: var(--spacing-sm);
}

/* "Poznaj Nature-Based Hospitality" — mid-left */
.s2-title {
    grid-column: 3 / 7;
    grid-row: 2 / 3;
    align-self: center;
    margin: 0;
    line-height: 1.08;
}

/* Topo badge — sits in col 2, row 1 bottom (between intro and title) */
.s2-badge {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    align-self: end;
    justify-self: center;
    width: clamp(90px, 7vw, 130px);
    height: clamp(90px, 7vw, 130px);
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s2-badge img {
    width: 52%;
    height: auto;
}

/* Definition block — bottom-left */
.s2-definition {
    grid-column: 1 / 6;
    grid-row: 3 / 4;
}

.s2-def-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.8vw, 2.4rem);
    line-height: 1.2;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

.s2-def-heading strong {
    font-weight: 700;
}

.s2-definition p {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(238, 231, 222, 0.75);
    margin-bottom: var(--spacing-sm);
}

/* =========================================
   Section 2 – Responsive
   ========================================= */
@media (max-width: 992px) {
    .s2-grid {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .s2-title {
        order: -1;
        /* title first on mobile */
    }

    .s2-img {
        width: 95%;
        position: relative;
        /* let them flow in document, not absolute */
        display: block;
    }

    .s2-img--tl {
        margin-bottom: calc(-1 * var(--spacing-xl));
        /* overlap into section content */
    }

    .s2-img--br {
        margin-left: auto;
        margin-top: calc(-1 * var(--spacing-xl));
    }
}


/* =========================================
   Section 3 – Dołącz naturę do gościnności
   ========================================= */

.section-dolacz {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

/* Topo background — top-right, ~70% width */
.section-dolacz::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: auto;
    aspect-ratio: 966 / 860;
    /* approximate SVG proportions */
    background-image: url('../../media/topo-bg-half-brown.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    pointer-events: none;
    z-index: 0;
}

/*
 * Single-column flex layout, content centered with max-widths.
 * Items span the inner 8 columns (cols 3-10 of 12) by limiting width.
 */
.s3-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    position: relative;
    z-index: 1;
}

/* "Dołącz naturę do gościnności." – large serif, cols 3-10 */
.s3-heading {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 1.1;
    color: var(--color-text-light);
    max-width: 66.66%;
    /* 8/12 cols */
    margin: 0 auto var(--spacing-sm);
}

/* "Twoi goście już tego szukają." – small sans */
.s3-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: rgba(238, 231, 222, 0.7);
    margin-bottom: var(--spacing-lg);
}

/* "Bądź liderem zmiany." – medium serif */
.s3-subheading {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    color: var(--color-text-light);
    line-height: 1.15;
    margin-bottom: var(--spacing-lg);
}

/* 3-column stat items row */
.s3-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    width: 100%;
    margin-bottom: var(--spacing-xl);
}

.s3-stat {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    text-align: left;
}

/* Brown numbered circle */
.s3-stat-num {
    flex-shrink: 0;
    width: clamp(48px, 5vw, 72px);
    height: clamp(48px, 5vw, 72px);
    background-color: var(--color-bg-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: var(--color-text-light);
    font-weight: 400;
}

.s3-stat p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(238, 231, 222, 0.75);
    padding-top: 0.4em;
    /* optically align with circle top */
}

/* Large centered statement – cols 2-11 */
.s3-statement {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 1.25;
    color: var(--color-text-light);
    max-width: 83.33%;
    /* 10/12 cols */
    text-align: center;
}

.s3-statement strong {
    font-weight: 700;
}

/* =========================================
   Section 3 – Responsive
   ========================================= */
@media (max-width: 992px) {

    .section-dolacz::after {
        width: 200%;
    }

    .s3-heading,
    .s3-statement {
        max-width: 100%;
    }

    .s3-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .s3-stat {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--spacing-md);
    }

    .s3-stat p {
        padding-top: 0;
    }

    .s3-stats::after {
        content: '';
        display: block;
        width: 1px;
        height: 60px;
        background-color: rgba(238, 231, 222, 0.4);
        margin: var(--spacing-lg) auto 0;
    }

    .s3-grid::after {
        content: '';
        display: block;
        width: 1px;
        height: 60px;
        background-color: rgba(238, 231, 222, 0.4);
        margin-top: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .s3-subheading {
        font-size: 1.6rem;
    }

    .s3-statement {
        font-size: 1.5rem;
    }
}

/* =========================================
   Section 4 – Photo Stats (76% / 56% / 37%)
   ========================================= */

.section-photo-stats {
    width: 100%;
    overflow: hidden;
}

/* 3 equal columns, full-bleed — no container */
.pstat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/* Each column is a stacked photo + content area */
.pstat-col {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 560px;
}

/* Image placeholder: fills the full column height.
   You can set background-image directly on this element. */
.pstat-img {
    position: absolute;
    inset: 0;
    /* Teal/green tinted overlay matching the Figma treatment */
    background-color: #2a4a42;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Teal colour-wash overlay on top of the photo */
.pstat-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(31, 53, 46, 0.45);
    /* --color-bg-dark at 45% */
    z-index: 1;
}

/* Bottom gradient: fades section background colour upward from the bottom,
   creating the soft vignette seen in the Figma reference */
.pstat-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            #1F352E 0%,
            /* --color-bg-dark fully opaque at base */
            rgba(31, 53, 46, 0.6) 35%,
            transparent 65%);
    z-index: 2;
}

/* Badge + caption sit above the image layers */
.pstat-content {
    position: relative;
    z-index: 10;
    margin-top: auto;
    /* pushes content to the bottom */
    padding: 2.5rem 2rem 3rem;
    text-align: center;
}

/* Brown rounded badge with the percentage number */
.pstat-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    background-color: var(--color-bg-brown);
    border-radius: 2rem;
    padding: 0.35em 0.9em;
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 400;
    color: var(--color-text-light);
    line-height: 1;
    margin-bottom: 1.25rem;
}

.pstat-badge sup {
    font-family: var(--font-sans);
    font-size: 0.38em;
    font-weight: 600;
    vertical-align: super;
    letter-spacing: 0.02em;
}

/* Caption text beneath the badge */
.pstat-caption {
    font-family: var(--font-sans);
    font-size: clamp(0.8rem, 1.1vw, 0.95rem);
    line-height: 1.65;
    color: rgba(238, 231, 222, 0.82);
    max-width: 260px;
    margin: 0 auto;
    text-align: center;
}

/* =========================================
   Section 4 – Photo Stats Responsive
   ========================================= */
@media (max-width: 768px) {
    .pstat-grid {
        grid-template-columns: 1fr;
    }

    .pstat-col {
        min-height: 340px;
    }
}

/* =========================================
   Section 6 – Brand Philosophy (brown bg)
   ========================================= */

.section-brand-phil {
    padding: var(--spacing-xl) 0;
    position: relative;
    background-image: url('../../media/topo-bg-blueish.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/*
 * Top row: 12-col grid
 *   bp-logo-block  → cols 1–5
 *   bp-headline    → cols 7–12
 */
.bp-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

/* Logo block: outlined box matching Figma */
.bp-logo-block {
    grid-column: 1 / 6;
    padding: clamp(2rem, 5vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
}

.bp-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
}

/* Headline: right half, bold mixed-weight serif */
.bp-headline {
    grid-column: 7 / 13;
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-text-light);
    margin: 0;
}

.bp-headline strong {
    font-weight: 700;
}

/* Bottom row: 3 equal columns */
.bp-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(238, 231, 222, 0.15);
}

.bp-col {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

/* Bullet point image and line container */
.bp-col-marker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--spacing-sm);
}

.bp-bullet-img {
    height: 32px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* The horizontal rule */
.bp-col-marker::after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background-color: rgba(238, 231, 222, 0.5);
}

.bp-col p {
    font-family: var(--font-sans);
    font-size: clamp(0.8rem, 1vw, 0.92rem);
    line-height: 1.7;
    color: rgba(238, 231, 222, 0.7);
    margin: 0;
}

/* =========================================
   Brand Philosophy – Responsive
   ========================================= */
@media (max-width: 992px) {
    .bp-grid {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .bp-logo-block {
        width: 100%;
        aspect-ratio: 16 / 7;
    }

    .bp-cols {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}


/* =========================================
   Section 7 – Paradox / Modern Hospitality
   ========================================= */

/* Full-bleed: no padding, section handles min-height */
.section-paradox {
    padding: 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background-image: url('../../media/section7.jpg');
    background-size: cover;
    background-position: center;
}

/* Split: left 65% text | right 35% image */
.paradox-layout {
    display: grid;
    grid-template-columns: 65fr 35fr;
    min-height: 100vh;
}

/* Text column: flex-center vertically, left-edge aligned to container */
.paradox-text {
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) 0;
    background-color: rgba(31, 53, 46, 0.85); /* Solid teal fill with high opacity */
    backdrop-filter: blur(60px) brightness(0.8); /* Massive blur */
    -webkit-backdrop-filter: blur(60px) brightness(0.8);
}

/*
 * Inner padding mirrors the global .container edge:
 * At ≤1400px the container uses 0 + --spacing-md padding.
 * Above 1400px the container centres, so we add the offset.
 */
.paradox-inner {
    padding-left: max(var(--spacing-md), calc((100vw * 0.65 - 1400px * 0.65) / 2 + var(--spacing-md)));
    padding-right: clamp(3rem, 6vw, 7rem);
    width: 100%;
}

/* Large serif heading */
.paradox-heading {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

/* "W Inviterrze widzimy…" — medium italic sub-heading */
.paradox-sub {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.8vw, 1.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    color: rgba(238, 231, 222, 0.85);
    margin-bottom: var(--spacing-lg);
}

/* 2×2 grid of O— items */
.paradox-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md) var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.paradox-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Reuse .bp-col-marker for the O— decorator (already defined) */

.paradox-item p {
    font-family: var(--font-sans);
    font-size: clamp(0.78rem, 1vw, 0.9rem);
    line-height: 1.7;
    color: rgba(238, 231, 222, 0.68);
    margin: 0;
}

/* Bold closing statement */
.paradox-closing {
    font-family: var(--font-sans);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    font-weight: 400;
    color: var(--color-text-light);
    margin: 0;
}

.paradox-closing strong {
    font-weight: 700;
}

/* Right image column: fills full height, placeholder colour */
.paradox-img-col {
    position: relative;
}

/* Topo badge: teal circle top-right, matching Figma */
.paradox-badge {
    position: absolute;
    top: clamp(2rem, 5vw, 5rem);
    left: 0;
    transform: translateX(-50%);
    width: clamp(70px, 8vw, 110px);
    height: clamp(70px, 8vw, 110px);
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.paradox-badge-icon {
    width: 60%;
    height: 60%;
    object-fit: contain;
    opacity: 0.85;
}

/* =========================================
   Section 7 – Paradox Responsive
   ========================================= */
@media (max-width: 992px) {
    .paradox-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .paradox-img-col {
        min-height: 340px;
    }

    .paradox-badge {
        top: 0;
        left: clamp(2rem, 5vw, 5rem);
        transform: translateY(-50%);
    }

    .paradox-inner {
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }

    .paradox-items {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   Section 8 – Slider "Jak działa w praktyce"
   ========================================= */

.section-slider {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    overflow: hidden;
}

/* Header: centred title + subtitle */
.sldr-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

/* Container for the heading */
.sldr-title-frame {
    margin-bottom: var(--spacing-md);
}

.sldr-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-text-light);
    margin: 0;
}

.sldr-sub {
    font-family: var(--font-sans);
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    line-height: 1.65;
    color: rgba(238, 231, 222, 0.72);
    margin: 0;
}

.sldr-sub strong {
    color: var(--color-text-light);
    font-weight: 600;
}

/* ── Slider shell ── */

/* Wrapper: full-bleed, no padding. Arrows are absolutely positioned inside. */
.sldr-wrapper {
    position: relative;
    width: 100%;
    /* No overflow:hidden here - that would clip absolute arrows */
}

/* Viewport clips the sliding track */
.sldr-viewport {
    width: 100%;
    overflow: hidden;
}

/* Translating strip of slides */
.sldr-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* ── Individual slide ── */
/*
 * Desktop: image flush to LEFT edge (42% width), gap, then brown card (36% width).
 * The slide is 100vw wide; beige fills from ~42vw to the right edge as a bg gradient.
 */
.sldr-slide {
    flex: 0 0 100vw;
    display: grid;
    grid-template-columns: 42vw 1fr;
    align-items: start;
    min-height: 420px;
    /* Beige starts right after image column */
    background: linear-gradient(to right, transparent 42vw, var(--color-bg-beige) 42vw);
}

/* Image wrapper: relative for mobile nav overlay */
.sldr-img-wrap {
    position: relative;
    height: 100%;
}

/* Photo: full height of wrapper */
.sldr-img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    background-color: #2a4a42;
    background-size: cover;
    background-position: center;
}

/* Brown card: sits on top of beige area, NOT full width */
.sldr-card {
    background-color: var(--color-bg-brown);
    padding: clamp(2rem, 4vw, 3.5rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: center;
    margin: 2rem clamp(2rem, 6vw, 8rem) 2rem clamp(1.5rem, 3vw, 3rem);
    border-radius: 4px;
}

/* Card top row: title + numbered dots */
.sldr-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.sldr-slide-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.8vw, 2.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-text-light);
    margin: 0;
}

/* Numbered dot group */
.sldr-dots {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 0.3rem;
}

.sldr-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(238, 231, 222, 0.45);
    background: transparent;
    color: rgba(238, 231, 222, 0.55);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.sldr-dot.is-active {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-text-light);
}

.sldr-card p {
    font-family: var(--font-sans);
    font-size: clamp(0.82rem, 1vw, 0.95rem);
    line-height: 1.75;
    color: rgba(238, 231, 222, 0.72);
    margin: 0;
}

/* ── Arrow buttons ── desktop only */
.sldr-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: clamp(40px, 4vw, 52px);
    height: clamp(40px, 4vw, 52px);
    border-radius: 50%;
    border: none;
    background: var(--color-bg-brown);
    color: var(--color-text-light);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sldr-btn:hover {
    background: var(--color-accent);
}

/* Left arrow: inside the dark section, left side */
.sldr-btn--prev.sldr-btn--desktop {
    left: clamp(1rem, 3vw, 3rem);
}

/* Right arrow: in the beige area, right side */
.sldr-btn--next.sldr-btn--desktop {
    right: clamp(1rem, 3vw, 3rem);
}

/* Mobile buttons: hidden by default */
.sldr-btn--mobile {
    display: none;
}

/* Mobile navigation bar: arrows left/right + dots center, sits below image */
.sldr-mobile-nav {
    display: none;
}

/* Desktop dots (in card top-right) */
.sldr-dots--desktop {
    display: flex;
}

/* Mobile dots (in nav bar below image) */
.sldr-dots--mobile {
    display: none;
}


/* ── Slider Responsive ── */
@media (max-width: 900px) {
    /* On mobile the slide stacks: image full-width, then dark card below */
    .sldr-slide {
        flex: 0 0 100vw;
        grid-template-columns: 1fr;
        min-height: auto;
        background: var(--color-bg-beige);
    }

    .sldr-img-wrap {
        position: relative;
        height: 65vw;
        min-height: 260px;
    }

    .sldr-img {
        width: 100%;
        height: 100%;
        min-height: 100%;
        border-radius: 0;
    }

    .sldr-card {
        border-radius: 4px;
        margin: -2rem var(--spacing-md) 0;
        position: relative;
        z-index: 2;
    }

    /* Show mobile nav bar (arrows + dots overlaid at bottom of image) */
    .sldr-mobile-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 1rem;
        position: absolute;
        bottom: 1rem;
        left: 0;
        right: 0;
        z-index: 5;
        background: transparent;
    }

    /* Mobile buttons visible */
    .sldr-btn--mobile {
        position: static;
        transform: none;
        display: flex;
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }

    /* Hide desktop buttons */
    .sldr-btn--desktop {
        display: none;
    }

    /* Show mobile dots, hide desktop dots */
    .sldr-dots--mobile {
        display: flex;
    }

    .sldr-dots--desktop {
        display: none;
    }
}


/* =========================================
   Section 9 – Process Slider "Poznaj nasz proces"
   ========================================= */

.section-process {
    padding: var(--spacing-xl) 0;
    overflow: hidden;
    /* Prevent horizontal scroll from slider */
}

.process-layout {
    display: grid;
    grid-template-columns: 4fr 6fr;
    /* 40% left, 60% right */
    gap: 4rem;
    align-items: center;
}

/* Left Column: Text & Nav */
.process-text-col {
    display: flex;
    flex-direction: column;
}

.process-heading {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-bg-brown);
    /* Dark brown */
    margin-bottom: 2.5rem;
}

/* Navigation Buttons (Pills / Circles) */
.process-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.process-nav-btn {
    height: 40px;
    border-radius: 20px;
    /* Pill shape initially, override for inactive */
    border: 1px solid var(--color-bg-brown);
    background: transparent;
    color: var(--color-bg-brown);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-width: 40px;
    /* Circle fallback */
}

/* Hide label, show number for inactive */
.process-nav-label {
    display: none;
    padding: 0 1rem;
}

.process-nav-num {
    display: block;
}

/* Active State: Pill with Label */
.process-nav-btn.is-active {
    background-color: var(--color-bg-dark);
    /* Dark green */
    border-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.process-nav-btn.is-active .process-nav-label {
    display: block;
}

.process-nav-btn.is-active .process-nav-num {
    display: none;
}

/* Content Wrapper (Text switching) */
.process-content-wrapper {
    position: relative;
    min-height: 200px;
}

.process-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
}

.process-slide-content.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.process-slide-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-bg-dark);
    margin-bottom: 1.5rem;
}

.process-slide-content p {
    font-family: var(--font-sans);
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    line-height: 1.7;
    color: #555;
}

/* Right Column: Visual Slider */
.process-visual-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Nav arrows on sides of map */
.process-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(40px, 5vw, 56px);
    height: clamp(40px, 5vw, 56px);
    border-radius: 50%;
    border: 1px solid var(--color-bg-dark);
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: opacity 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.process-arrow:hover {
    opacity: 0.9;
}

.process-arrow--prev {
    left: -28px;
    /* Pulled out slightly */
}

.process-arrow--next {
    right: -28px;
}

.process-map-viewport {
    width: 100%;
    overflow: hidden;
    /* Aspect ratio for the topo map */
    aspect-ratio: 1 / 1;
    max-width: 650px;
    margin: 0 auto;
}

.process-map-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.process-map-slide {
    flex: 0 0 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-map {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.process-map-number {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 300;
    color: var(--color-bg-beige);
    /* Light color on dark topo center */
    /* Nudge up slightly depending on exact map center */
    transform: translateY(-5%);
}

/* Responsive */
@media (max-width: 992px) {
    .process-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-visual-col {
        order: -1;
        /* Image first on mobile */
    }

    .process-arrow--prev {
        left: 0;
    }

    .process-arrow--next {
        right: 0;
    }
}

/* =========================================
   Section 10 – Guest Gains
   ========================================= */

.section-gains {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--color-bg-brown);
    overflow: hidden;
}

/* Background Photo (Left side mostly) */
.gains-photo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    /* Roughly the left half */
    height: 100%;
    background-color: #2a4042;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* 
 * A wave overlay or curved cut-out could go here.
 * The user can use a mask-image or a pseudo element.
 */
.gains-photo-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay to ensure text is readable */
    background: linear-gradient(to top, rgba(31, 53, 46, 0.8) 0%, transparent 60%);
}

.gains-topo-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('../media/topo-bg.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.gains-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
    padding: var(--spacing-xl) var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh;
    align-items: end;
    /* Left text is at the bottom */
}

/* Left Text Block */
.gains-text-col {
    grid-column: 2 / 6;
    padding-bottom: var(--spacing-xl);
}

.gains-heading {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.05;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

.gains-text-col p {
    font-family: var(--font-sans);
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    line-height: 1.6;
    color: rgba(238, 231, 222, 0.8);
    margin-bottom: 1.5rem;
}

.gains-text-col p strong {
    font-weight: 700;
    color: var(--color-text-light);
}

/* Right List Block */
.gains-list-col {
    grid-column: 7 / 12;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: var(--spacing-xl) 0;
}

.gain-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.gain-icon-wrap {
    flex-shrink: 0;
    width: clamp(50px, 6vw, 70px);
    height: clamp(50px, 6vw, 70px);
    border-radius: 50%;
    background-color: var(--color-accent);
    /* Teal circle */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.gain-icon {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
}

.gain-item p {
    font-family: var(--font-sans);
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    line-height: 1.5;
    color: var(--color-text-light);
    margin: 0;
}

@media (max-width: 992px) {
    .gains-grid {
        display: flex;
        flex-direction: column;
        padding-top: var(--spacing-xl);
    }

    .gains-photo-bg {
        width: 100%;
        height: 50%;
    }

    .gains-text-col {
        padding-bottom: var(--spacing-md);
    }
}

/* =========================================
   Section 12 – Business Gains Slider
   ========================================= */

.section-biz-slider {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--color-bg-beige);
    overflow: hidden;
}

.biz-layout {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 100vh;
}

/* Left Column: Accordion */
.biz-accordion-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-xl) clamp(2rem, 5vw, 6rem) var(--spacing-xl) max(var(--spacing-md), calc((100vw - 1400px) / 2 + var(--spacing-md)));
}

.biz-accordion {
    width: 100%;
    max-width: 600px;
}

.biz-acc-item {
    border-bottom: 1px solid rgba(66, 42, 33, 0.2);
    /* Soft brown line */
}

.biz-acc-item:first-child {
    border-top: 1px solid rgba(66, 42, 33, 0.2);
}

.biz-acc-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.biz-acc-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-bg-brown);
    margin: 0;
    transition: color 0.3s ease;
}

.biz-acc-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-bg-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-bg-brown);
    transition: all 0.3s ease;
    margin-left: 1rem;
}

/* Accordion Content Wrapper */
.biz-acc-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.biz-acc-content-inner {
    overflow: hidden;
}

.biz-acc-content p {
    font-family: var(--font-sans);
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    line-height: 1.6;
    color: var(--color-bg-brown);
    opacity: 0.8;
    margin: 0 0 1.5rem 0;
    max-width: 90%;
}

/* Active State Styles */
.biz-acc-item.is-active .biz-acc-content {
    grid-template-rows: 1fr;
}

.biz-acc-item.is-active .biz-acc-num {
    background-color: var(--color-bg-dark);
    /* Dark Green */
    border-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

/* Hover effects */
.biz-acc-header:hover .biz-acc-title {
    opacity: 0.8;
}

/* Right Column: Visual Area */
.biz-visual-col {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

/* Text Overlay over images */
.biz-visual-overlay {
    position: absolute;
    top: clamp(2rem, 5vw, 4rem);
    left: clamp(2rem, 5vw, 4rem);
    z-index: 10;
}

.biz-visual-heading {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--color-text-light);
    margin: 0;
}

/* Images Container */
.biz-images {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.biz-img-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #2a4042;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.biz-img-slide.is-active {
    opacity: 1;
    visibility: visible;
}

/* Add a subtle dark gradient from top and bottom to ensure text readability */
.biz-img-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(31, 53, 46, 0.6) 0%, transparent 30%, transparent 70%, rgba(31, 53, 46, 0.4) 100%);
}

/* Decorative Badge */
.biz-badge {
    position: absolute;
    bottom: clamp(2rem, 5vw, 4rem);
    right: clamp(2rem, 5vw, 4rem);
    width: clamp(80px, 10vw, 120px);
    height: clamp(80px, 10vw, 120px);
    background-color: var(--color-bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.biz-badge-icon {
    width: 50%;
    height: 50%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* Responsive */
@media (max-width: 992px) {
    .biz-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .biz-accordion-col {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .biz-visual-col {
        height: 60vh;
        order: -1;
        /* Image first on mobile */
    }
}

/* =========================================
   Section 13 – Examples Header
   ========================================= */

.section-examples-header {
    position: relative;
    padding: clamp(4rem, 8vw, 7rem) 0;
    overflow: hidden;
    background-color: var(--color-bg-dark);
}

.examples-topo-bg {
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    background-image: url('../../media/topo-bg.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.examples-header-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
    align-items: center;
}

.examples-text {
    grid-column: 2 / 10;
}

.examples-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
}

.examples-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 300;
    line-height: 1.4;
    color: var(--color-text-light);
    margin: 0;
    max-width: 90%;
}

.examples-subtitle strong {
    font-weight: 700;
}

.examples-badge {
    grid-column: 10 / 12;
    display: flex;
    justify-content: center;
    align-items: center;
}

.examples-badge-icon {
    width: clamp(140px, 18vw, 200px);
    height: clamp(140px, 18vw, 200px);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    /* Placeholder background */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 992px) {
    .examples-text {
        grid-column: 1 / 13;
    }

    .examples-badge {
        grid-column: 1 / 13;
        margin-top: var(--spacing-lg);
        justify-content: flex-start;
    }
}

/* =========================================
   Section 14 – Examples Grid
   ========================================= */

.section-examples {
    padding-bottom: var(--spacing-xl);
    background-color: var(--color-bg-dark);
}

.example-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
    align-items: center;
}

/* Text Column */
.example-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.example-row .text-left {
    grid-column: 2 / 6;
}

.example-row .text-right {
    grid-column: 9 / 13;
}

.example-icon-wrap {
    width: clamp(60px, 8vw, 80px);
    height: clamp(60px, 8vw, 80px);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    /* Placeholder for the teal circle */
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    padding: 15px;
}

.example-icon {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.example-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

.example-desc {
    font-family: var(--font-sans);
    font-size: clamp(0.9rem, 1vw, 1.05rem);
    line-height: 1.65;
    color: rgba(238, 231, 222, 0.8);
    margin-bottom: var(--spacing-md);
}

.example-line {
    width: 100%;
    height: 1px;
    background-color: var(--color-accent);
    border: none;
    margin: 0;
    opacity: 0.8;
}

/* Image Column */
.example-img-col {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.example-row .img-right {
    grid-column: 7 / 13;
}

.example-row .img-left {
    grid-column: 1 / 8;
}

.example-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #2a4042;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 992px) {
    .example-row {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .example-row.reverse-row {
        flex-direction: column-reverse;
    }

    .example-img-col {
        min-height: 300px;
    }
}

/* =========================================
   Section 15 – Dlaczego Warto
   ========================================= */

.section-why {
    position: relative;
    padding: clamp(4rem, 8vw, 7rem) 0;
    overflow: hidden;
    background-color: var(--color-bg-dark);
    /* or a slightly lighter teal if defined later */
}

.why-topo-bg {
    position: absolute;
    top: 0;
    left: -10%;
    width: 60%;
    height: 100%;
    background-image: url('../../media/topo-bg.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.why-header-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
    align-items: start;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.why-title-col {
    grid-column: 1 / 5;
}

.why-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-text-light);
    margin: 0;
}

.why-desc-col {
    grid-column: 5 / 12;
}

.why-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 300;
    line-height: 1.3;
    color: var(--color-text-light);
    margin: 0 0 1.5rem 0;
}

.why-subtitle strong {
    font-weight: 700;
    color: var(--color-accent);
    /* Gives Nature-Based Hospitality that subtle pop if needed */
}

.why-desc {
    font-family: var(--font-sans);
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    line-height: 1.6;
    color: rgba(238, 231, 222, 0.8);
    margin: 0;
    max-width: 90%;
}

/* Cards Grid */
.why-cards-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    position: relative;
    width: 100%;
    min-height: 480px;
    background-color: #2a4042;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--spacing-lg) var(--spacing-md);
}

.why-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.6s ease;
}

/* Gradient overlay for readability */
.why-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(31, 53, 46, 0.9) 0%, rgba(31, 53, 46, 0.6) 30%, transparent 80%);
    z-index: 2;
}

.why-card-content {
    position: relative;
    z-index: 3;
}

.why-card-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-text-light);
    margin: 0 0 1rem 0;
}

.why-card-desc {
    font-family: var(--font-sans);
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Hover effect */
.why-card:hover .why-card-bg {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .why-header-grid {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .why-desc-col {
        max-width: 100%;
    }

    .why-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-cards-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: 380px;
    }
}

/* =========================================
   Section 16 – Final Video
   ========================================= */

.section-final-video {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
}

.final-video-content {
    position: relative;
    z-index: 5;
    width: 100%;
}

.final-video-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
    align-items: center;
}

.final-video-text-col {
    grid-column: 6 / 13;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

.final-video-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-text-light);
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    /* Text shadow for better readability over video */
}

@media (max-width: 992px) {
    .final-video-text-col {
        grid-column: 1 / 13;
        text-align: center;
        justify-content: center;
    }
}

/* =========================================
   Section 17 – Contact
   ========================================= */

.section-contact {
    position: relative;
    padding: clamp(4rem, 8vw, 7rem) 0;
    background-color: var(--color-bg-beige);
    overflow: hidden;
}

.contact-topo-bg {
    position: absolute;
    top: 0;
    left: -15%;
    width: 50%;
    height: 100%;
    background-image: url('../../media/topo-bg.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.section-contact .container {
    position: relative;
    z-index: 2;
}

/* Header */
.contact-header-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
    margin-bottom: var(--spacing-lg);
}

.contact-title {
    grid-column: 2 / 10;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-bg-brown);
    margin: 0 0 1rem 0;
}

.highlight-dark {
    font-weight: 700;
    color: var(--color-bg-dark);
}

.contact-email {
    grid-column: 2 / 10;
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 700;
    color: var(--color-bg-dark);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-email:hover {
    opacity: 0.8;
}

/* Content Grid */
.contact-content-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
}

/* Left: People */
.contact-people {
    grid-column: 2 / 7;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.person-avatar {
    width: clamp(80px, 10vw, 120px);
    height: clamp(80px, 10vw, 120px);
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    /* Adjust if it's a custom mask */
    background-color: rgba(0, 0, 0, 0.05);
    /* Placeholder bg */
}

.person-info {
    display: flex;
    flex-direction: column;
}

.person-name,
.person-email {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: rgba(66, 42, 33, 0.7);
    /* Brown faded */
    margin: 0;
    text-decoration: none;
}

.person-phone {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 300;
    color: var(--color-bg-brown);
    text-decoration: none;
    margin: 0.2rem 0;
    transition: color 0.3s ease;
}

.person-phone:hover,
.person-email:hover {
    color: var(--color-bg-dark);
}

/* Right: Form */
.contact-form-wrap {
    grid-column: 8 / 12;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(66, 42, 33, 0.3);
    /* Brown line */
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-bg-brown);
    outline: none;
    transition: border-color 0.3s ease;
    resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(66, 42, 33, 0.5);
    font-weight: 300;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--color-bg-dark);
}

.form-agreements {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: rgba(66, 42, 33, 0.8);
    cursor: pointer;
    user-select: none;
}

.checkbox-label input {
    display: none;
}

.custom-radio {
    width: 18px;
    height: 18px;
    border: 1px solid var(--color-bg-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.checkbox-label input:checked+.custom-radio {
    background-color: var(--color-bg-brown);
    box-shadow: inset 0 0 0 4px var(--color-bg-beige);
    /* Creates the dot effect */
}

.btn-show-agreements {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: rgba(66, 42, 33, 0.6);
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.btn-show-agreements:hover {
    color: var(--color-bg-dark);
}

.btn-submit {
    align-self: flex-end;
    margin-top: 2rem;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    border-radius: 30px;
    padding: 12px 32px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #1a2a24;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {

    .contact-title,
    .contact-email {
        grid-column: 1 / 13;
    }

    .contact-people {
        grid-column: 1 / 13;
        margin-bottom: var(--spacing-xl);
    }

    .contact-form-wrap {
        grid-column: 1 / 13;
    }

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

/* Agreements Content Toggle */
.agreements-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: rgba(66, 42, 33, 0.7);
    line-height: 1.4;
}

.agreements-content p {
    margin: 0 0 0.5rem 0;
}

.agreements-content p:last-child {
    margin-bottom: 0;
}

.agreements-content a {
    color: var(--color-bg-dark);
    text-decoration: underline;
}

/* Active State */
.btn-show-agreements.is-active .icon-chevron {
    transform: rotate(180deg);
}

.icon-chevron {
    transition: transform 0.3s ease;
}

.agreements-content.is-active {
    max-height: 200px;
    /* Arbitrary enough to fit the text */
    opacity: 1;
    margin-top: 0.5rem;
}

/* =========================================
   Footer
   ========================================= */

.footer {
    position: relative;
    background-color: var(--color-bg-brown);
    padding: var(--spacing-xl) 0 var(--spacing-lg) 0;
    overflow: hidden;
}

.footer-topo-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('../../media/topo-bg.svg');
    background-size: cover;
    background-position: center right;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

/* Common Grid Setup */
.footer-top-grid,
.footer-middle-grid,
.footer-bottom-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
    align-items: center;
}

/* Top Row */
.footer-top-grid {
    margin-bottom: 6rem;
}

.footer-logo-wrap {
    grid-column: 2 / 6;
}

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

.footer-up-btn-wrap {
    grid-column: 11 / 13;
    display: flex;
    justify-content: flex-end;
}

.btn-scroll-top {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-bg-beige);
    color: var(--color-bg-dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-scroll-top:hover {
    transform: translateY(-5px);
    background-color: #fff;
}

/* Middle Row */
.footer-middle-grid {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    grid-column: 2 / 6;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright p {
    margin: 0;
}

.footer-links {
    grid-column: 6 / 10;
    text-align: center;
}

.footer-links a {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-socials {
    grid-column: 10 / 13;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-bg-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-btn:hover {
    background-color: #1a2a24;
    transform: scale(1.05);
}

/* Bottom Row */
.footer-disclaimer {
    grid-column: 2 / 11;
}

.footer-disclaimer p {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {

    .footer-top-grid,
    .footer-middle-grid,
    .footer-bottom-grid {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .footer-top-grid {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 3rem;
    }

    .footer-links {
        text-align: left;
    }

    .footer-socials {
        justify-content: flex-start;
    }

    .footer-disclaimer {
        padding-right: 0;
    }
}

/* Smaller Desktop Adjustments for Grids (< 1440px and < 1200px) */
@media (max-width: 1440px) {
    .gains-grid {
        align-items: center;
        /* Prevent floating issues if image height doesn't match grid perfectly */
    }
}

@media (max-width: 1200px) {
    .gains-text-col {
        grid-column: 1 / 6;
    }

    .gains-list-col {
        grid-column: 6 / 13;
    }

    .biz-layout {
        grid-template-columns: 1fr;
    }

    .biz-visual-col {
        min-height: 400px;
    }
}