* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}




body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #111111;
    overflow: hidden;
}

body.expedition-standalone {
    overflow: visible;
}


.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('home-bg.jpg');
    background-size: cover;
    background-position: center;
}








/* ==================================================
   LOGO EKIPΛ
   ================================================== */




.logo-text-container {
    text-align: center;
    color: #ffffff;
    z-index: 50;
    position: relative;
    transition: opacity 0.3s ease;
    user-select: none;
    font-family: 'Barlow Condensed', sans-serif;
}




.logo-text-container.hidden {
    opacity: 0;
    pointer-events: none;
}




.logo-main {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 14px;
    line-height: 1;
    margin-bottom: 8px;
}








/*
 * EKIP pojawia się normalnie.
 * Λ jest animowane osobno.
 */




.logo-lambda {
    display: inline-block;
    opacity: 0;
    animation: logoLambdaAppear 4s ease-in-out forwards;
    animation-delay: 0.65s;
}


@keyframes logoLambdaAppear {
    0% {
        opacity: 0;
    }


    100% {
        opacity: 1;
    }
}








/* ==================================================
   PODTYTUŁ LOGO
   ================================================== */




.logo-sub {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 9px;
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    display: inline-block;
    width: 100%;
    white-space: nowrap;
}








/* ==================================================
   PRZYCISK MENU
   ================================================== */




.mountain-peak-burger {




    position: absolute;




    top: 40px;
    right: 40px;




    background: none;
    border: none;




    color: #ffffff;




    font-family: 'Barlow Condensed', sans-serif;




    font-size: 2.4rem;




    font-weight: 700;




    cursor: pointer;




    z-index: 250;




    line-height: 1;




    outline: none;




    /*
     * WAŻNE:
     * obracamy cały znak,
     * nie zmieniamy jego treści.
     */




    transform: rotate(0deg);




    transition:
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.3s ease;




}








/*
 * MENU OTWARTE
 *
 * Λ obraca się o 90° w lewo.
 */




.mountain-peak-burger.open {




    color: #b3b3b3;




    font-size: 2.4rem;




    transform: rotate(-90deg);




}








/* ==================================================
   PEŁNOEKRANOWE MENU
   ================================================== */




.menu-overlay {




    position: fixed;




    top: 0;
    left: 0;




    width: 100%;
    height: 100%;




    background-color: #ffffff;




    z-index: 100;




    display: flex;




    justify-content: center;
    align-items: center;




    opacity: 0;




    pointer-events: none;




    transition: opacity 0.4s ease;




}




.menu-overlay.active {




    opacity: 1;




    pointer-events: auto;




}








.menu-content {




    text-align: left;




    width: 100%;




    max-width: 500px;




    padding: 20px;




    max-height: 85vh;




    overflow-y: auto;




}




.menu-content::-webkit-scrollbar {
    display: none;
}








.menu-year-group {




    margin-bottom: 35px;




}








.year-heading {




    display: block;




    font-size: 0.9rem;




    color: #b3b3b3;




    letter-spacing: 3px;




    margin-bottom: 14px;




    font-weight: 300;




}








.expedition-list {




    list-style: none;




}








.expedition-list li {




    margin-bottom: 12px;




}








.expedition-list a {




    text-decoration: none;




    white-space: nowrap;




    transition: color 0.2s ease;




    display: flex;




    align-items: center;




}








.expedition-list a:hover {




    color: #888888;




}








.exp-name {




    font-size: 1.25rem;




    color: #111111;




    letter-spacing: 0.5px;




    font-weight: 300 !important;




}








.exp-sep {




    font-size: 1.25rem;




    color: #e0e0e0;




    margin: 0 10px;




    font-weight: 300;




}








.exp-season {




    font-size: 0.9rem;




    color: #b3b3b3;




    letter-spacing: 1px;




    font-weight: 300 !important;




}








/* ==================================================
   WARSTWA WYPRAWY
   ================================================== */




.expedition-overlay {




    position: fixed;




    top: 0;
    left: 0;




    width: 100%;
    height: 100%;




    background-color: #ffffff !important;




    z-index: 200;




    opacity: 0;




    pointer-events: none;




    transform: none;




    transition: opacity 0.4s ease;




    overflow-y: auto;




}








.expedition-overlay.active {




    opacity: 1;




    pointer-events: auto;




    transform: none;




}








.expedition-overlay .back-btn-close {




    position: fixed;




    top: 40px;
    right: 40px;




    background: none;




    border: none;




    color: #b3b3b3;




    font-family: 'Barlow Condensed', sans-serif;




    font-size: 2.4rem;




    font-weight: 700;




    cursor: pointer;




    z-index: 260;




    line-height: 1;




    transition:
        color 0.3s ease,
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);




}








/* ==================================================
   MOBILE
   ================================================== */




@media (max-width: 600px) {




    .hero-section {
        padding: 20px;
    }




    .logo-text-container {




        width: 100%;




        max-width: 280px;




        margin: 0 auto;




    }




    .logo-main {




        font-size: 3.4rem;




        letter-spacing: 10px;




        margin-bottom: 6px;




    }




    .logo-sub {




        font-size: 0.75rem;




        letter-spacing: 4.5px;




        padding: 6px 0;




        width: 100%;




    }




    .mountain-peak-burger {




        top: 35px;




        right: 30px;




        font-size: 2rem;




    }




    .mountain-peak-burger.open {




        font-size: 2rem;




    }




    .menu-content {




        padding: 10px;




        max-width: 380px;




    }




    .exp-name {




        font-size: 1.05rem;




    }




    .exp-sep {




        margin: 0 6px;




        font-size: 1.05rem;




    }




    .exp-season {




        font-size: 0.85rem;




    }




    .year-heading {




        font-size: 0.85rem;




    }




}
/* =========================================================
   EKIPΛ — LAYOUT WYPRAW
   RYSY / WERSJA 01
   ========================================================= */




/* -----------------------------------------
   GŁÓWNY KONTENER WYPRAWY
   ----------------------------------------- */


.expedition-page {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 120px 50px 100px;
    color: #111111;
}




/* -----------------------------------------
   NAGŁÓWEK WYPRAWY
   ----------------------------------------- */


.expedition-hero {
    padding-top: 30px;
    margin-bottom: 100px;
}


.expedition-meta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: #999999;
    text-transform: uppercase;
    margin-bottom: 22px;
}


.expedition-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: 0.9;
    font-weight: 700;
    letter-spacing: 8px;
    margin: 0 0 25px 0;
    color: #111111;
}


.expedition-location {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #888888;
    text-transform: uppercase;
}




/* -----------------------------------------
   ZDJĘCIA
   ----------------------------------------- */


.expedition-photo {
    margin-bottom: 110px;
}


.photo-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;


    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: #b5b5b5;
}


.expedition-photo-large .photo-placeholder {
    aspect-ratio: 16 / 9;
}


.expedition-photo-medium {
    max-width: 820px;
    margin-left: auto;
}


.expedition-photo-medium .photo-placeholder {
    aspect-ratio: 4 / 3;
}


.photo-caption {
    margin-top: 12px;


    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #999999;
}




/* -----------------------------------------
   SEKCJE
   ----------------------------------------- */


.expedition-section {
    margin-bottom: 120px;
}


.section-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #aaaaaa;
    margin-bottom: 10px;
}


.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
}




/* -----------------------------------------
   DANE TECHNICZNE
   ----------------------------------------- */


.expedition-data {
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;


    display: grid;
    grid-template-columns: repeat(2, 1fr);


    padding: 30px 0;
}


.expedition-data-item {
    padding: 18px 30px 18px 0;
}


.expedition-data-item span {
    display: block;


    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;


    color: #999999;
    margin-bottom: 7px;
}


.expedition-data-item strong {
    display: block;


    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}




/* -----------------------------------------
   MAPA
   ----------------------------------------- */


.map-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #999999;
    margin-bottom: 15px;
}


.expedition-map {
    width: 100%;
    height: 600px;
    background: #f3f3f3;
    overflow: hidden;
}


.expedition-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}




/* -----------------------------------------
   GALERIA
   ----------------------------------------- */


.expedition-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px 35px;
    margin-top: 40px;
}


.gallery-item {
    width: 100%;
}


.gallery-item-wide {
    grid-column: 1 / -1;
}


.gallery-item-wide .photo-placeholder {
    aspect-ratio: 16 / 8;
}




/* -----------------------------------------
   KONIEC WYPRAWY
   ----------------------------------------- */


.expedition-end {
    padding-top: 130px;
    text-align: center;


    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 5px;
    color: #bbbbbb;
}




/* =========================================================
   MOBILE
   ========================================================= */


@media (max-width: 700px) {


    .expedition-page {
        padding: 95px 20px 70px;
    }


    .expedition-hero {
        padding-top: 20px;
        margin-bottom: 65px;
    }


    .expedition-meta {
        font-size: 0.7rem;
        letter-spacing: 2px;
        margin-bottom: 18px;
    }


    .expedition-hero h1 {
        font-size: 3.5rem;
        letter-spacing: 5px;
        margin-bottom: 18px;
    }


    .expedition-location {
        font-size: 0.72rem;
        letter-spacing: 2px;
    }


    .expedition-photo {
        margin-bottom: 70px;
    }


    .photo-placeholder {
        aspect-ratio: 4 / 3;
    }


    .expedition-photo-large .photo-placeholder {
        aspect-ratio: 4 / 3;
    }


    .expedition-photo-medium {
        max-width: 100%;
    }


    .expedition-section {
        margin-bottom: 80px;
    }


    .section-title {
        font-size: 1.15rem;
        margin-bottom: 28px;
    }


    .expedition-data {
        grid-template-columns: 1fr;
        padding: 15px 0;
    }


    .expedition-data-item {
        padding: 15px 0;
    }


    .expedition-map {
        height: 420px;
    }


    .expedition-gallery {
        grid-template-columns: 1fr;
        gap: 45px;
    }


    .gallery-item-wide {
        grid-column: auto;
    }


    .gallery-item-wide .photo-placeholder {
        aspect-ratio: 4 / 3;
    }


    .expedition-end {
        padding-top: 80px;
    }
}



