/* ===========================================
   MOBILE STYLES - max-width: 480px
   Osobny plik dla łatwiejszego debugowania
   =========================================== */

@media screen and (max-width: 480px) {
    /* Reset */
    * {
        box-sizing: border-box;
    }
    
    /* Body */
    body {
        font-size: 14px;
        line-height: 1.5;
    }
    
    body::before {
        display: none;
    }
    
    /* Container */
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
        margin: 0 auto;
    }
    
    /* ==================
       HEADER
       ================== */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 100;
    }
    
    .site-header .container {
        display: flex;
        align-items: center;
        min-height: 52px;
        padding-top: 8px;
        padding-bottom: 8px;
        gap: 8px;
    }
    
    .brand {
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 1;
        min-width: 0;
    }
    
    .brand__logo {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 11px;
        border-radius: 8px;
    }
    
    .brand__name {
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .lang-switch {
        padding: 3px 5px;
        gap: 2px;
        flex-shrink: 0;
    }
    
    .lang-switch__btn {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 8px;
        flex-shrink: 0;
    }
    
    .nav-toggle__line {
        width: 18px;
        height: 2px;
        margin: 2px 0;
    }
    
    /* Menu ukryte domyślnie */
    .nav-list {
        display: none;
        position: fixed;
        top: 60px;
        left: 12px;
        right: 12px;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        padding: 12px;
        border-radius: 12px;
        z-index: 999;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(148, 163, 184, 0.2);
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        flex-direction: column;
        gap: 4px;
    }
    
    /* Menu widoczne po otwarciu */
    .nav-list.is-open {
        display: flex;
    }
    
    .nav-list a {
        display: block;
        padding: 12px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    .nav-list a:hover {
        background: rgba(79, 70, 229, 0.08);
    }
    
    /* ==================
       HERO
       ================== */
    .hero {
        padding: 20px 0 28px;
    }
    
    .hero::before,
    .hero::after {
        display: none;
    }
    
    .hero .container {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    
    .hero__eyebrow {
        font-size: 10px;
        letter-spacing: 0.1em;
        margin-bottom: 8px;
        padding-left: 14px;
    }
    
    .hero__eyebrow::before {
        width: 8px;
        height: 8px;
    }
    
    .hero__content h1 {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 12px;
        letter-spacing: -0.01em;
    }
    
    .hero__lead {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
        max-width: 100%;
    }
    
    .hero__actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        display: block;
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
        text-align: center;
        border-radius: 12px;
    }
    
    .hero__stats {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-card {
        padding: 14px;
        border-radius: 12px;
    }
    
    .stat-card__value {
        font-size: 15px;
    }
    
    .stat-card__label {
        font-size: 12px;
        line-height: 1.4;
    }
    
    /* ==================
       SECTIONS
       ================== */
    .section {
        padding: 28px 0;
    }
    
    .section h2 {
        font-size: 20px;
        margin-bottom: 16px;
        line-height: 1.3;
    }
    
    .section h2::after {
        width: 30px;
        height: 3px;
        bottom: -6px;
    }
    
    .section__grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .section__intro p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .section__details {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .detail {
        padding: 12px;
        border-radius: 10px;
    }
    
    .detail h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .detail p {
        font-size: 13px;
        line-height: 1.5;
        margin: 0;
    }
    
    /* ==================
       CARDS
       ================== */
    .cards {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .card {
        padding: 16px;
        border-radius: 12px;
    }
    
    .card h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .card p {
        font-size: 13px;
        line-height: 1.5;
        margin: 0;
    }
    
    /* ==================
       TIMELINE
       ================== */
    .timeline {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .timeline__item {
        display: flex;
        gap: 12px;
        padding: 14px;
        border-radius: 12px;
    }
    
    .timeline__step {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 13px;
        border-radius: 10px;
    }
    
    .timeline__item h3 {
        font-size: 15px;
        margin: 0 0 4px;
    }
    
    .timeline__item p {
        font-size: 13px;
        line-height: 1.5;
        margin: 0;
    }
    
    /* ==================
       FEATURE
       ================== */
    .feature {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        border-radius: 16px;
    }
    
    .feature h2 {
        font-size: 18px;
    }
    
    .feature p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .feature__highlight {
        aspect-ratio: 16/10;
        border-radius: 12px;
        order: -1;
    }
    
    /* ==================
       SCENIC
       ================== */
    .scenic__grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .scenic__content h2 {
        font-size: 20px;
    }
    
    .scenic__content p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .scenic__note {
        font-size: 13px;
        padding-left: 10px;
    }
    
    .scenic__visual {
        aspect-ratio: 16/10;
        border-radius: 12px;
    }
    
    .sun {
        width: 35px;
        height: 35px;
    }
    
    /* ==================
       CONTACT
       ================== */
    .contact {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .contact h2 {
        font-size: 20px;
    }
    
    .contact > div > p {
        font-size: 14px;
    }
    
    .contact__details {
        margin-top: 16px;
        gap: 8px;
    }
    
    .contact__details li {
        padding: 10px;
        border-radius: 8px;
    }
    
    .contact__label {
        font-size: 9px;
    }
    
    .contact__details span:not(.contact__label),
    .contact__details a {
        font-size: 13px;
        word-break: break-word;
    }
    
    .contact__cta {
        padding: 16px;
        gap: 12px;
        border-radius: 12px;
    }
    
    .contact__note {
        font-size: 12px;
    }
    
    /* ==================
       FOOTER
       ================== */
    .site-footer {
        padding: 20px 0;
    }
    
    .site-footer::before {
        width: 40px;
    }
    
    .site-footer .container {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .site-footer p {
        font-size: 11px;
    }
    
    .footer-links {
        justify-content: center;
        gap: 16px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
}
