:root {
    --bg-color: #fcfaf7; 
    --text-dark: #2d2d2d; 
    --accent-gold: #c5a67c; 
}

* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Příprava pro GSAP - skrytí elementů před startem */
.reveal-text { opacity: 0; transform: translateY(40px); }
.reveal-up { opacity: 0; transform: translateY(60px); }
.reveal-scale { opacity: 0; transform: scale(0.95); }
.reveal-side-left { opacity: 0; transform: translateX(-50px); }
.reveal-side-right { opacity: 0; transform: translateX(50px); }

/* Úplné skrytí kritických prvků hned při načtení */
.logo-center, 
.nav-group a, 
.hero-title, 
.hero-subtitle, 
.hero-cta { 
    opacity: 0; 
    visibility: hidden; 
}

/* Plynulý scroll pro prohlížeč */
html { scroll-behavior: smooth; }

/* Overflow skrytí pro parallax kontejnery */
.philosophy-image, .service-image-full, .split-image, .process-image-full, .about-image div {
    overflow: hidden;
}

.parallax-img {
    will-change: transform;
    scale: 1.1;
}

.stagger-item { opacity: 0; }

/* Úprava pro dokonale symetrickou navigaci */
.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

/* Základní navigace */
.main-nav {
    display: flex;
    align-items: flex-start;
    width: 100%;
    max-width: 1400px;
    padding-top: 30px;
    margin: 0 auto; /* Aby byla vycentrovaná */
}

/* Skupiny odkazů */
.nav-group {
    flex: 1; 
    display: flex;
    gap: 35px;
    align-items: center;
    line-height: 1;
}

/* Nastavení samotných odkazů v grupách */
.nav-group a {
    text-decoration: none;
    color: var(--text-dark); /* Důležité: barva musí být zde */
    font-size: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 300;
    transition: opacity 0.3s ease; /* Plynulé zmizení */
}

/* OPRAVENÝ HOVER */
/* Cílíme přímo na odkazy uvnitř nav-group */
.nav-group a:hover {
    opacity: 0.5 !important;
    cursor: pointer;
}

.nav-group.left { justify-content: flex-end; }
.nav-group.right { justify-content: flex-start; }

.logo-center {
    flex-shrink: 0;
    margin: 0 60px;
    text-align: center;
    position: relative;
}

.logo-center img {
    height: 300px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-center img:hover {
    transform: scale(1.05);
}

/* --- HERO SEKCE (Sjednoceno) --- */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: url('img/herobg.png') center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.65); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 270px 20px 0 20px; /* Horní padding z původní verze zachován */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hero headline - JEŠTĚ MENŠÍ */
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    /* Horní hranice snížena na 2.8rem pro velmi decentní vzhled */
    font-size: clamp(1.8rem, 4vw, 2.8rem); 
    font-weight: 300;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    max-width: 800px;
    color: var(--text-dark);
}

/* Hero subtitle - JEŠTĚ MENŠÍ (Decentní popisek) */
.hero-subtitle {
    font-family: 'Inter', sans-serif;
    /* Velikost 0.9rem působí velmi lehce a elegantně */
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-dark);
    max-width: 500px;
    margin: 0 auto 2.5rem auto;
    letter-spacing: 0.02rem;
    opacity: 0.75;
}
/* NOVÉ HERO CTA (Sytější barva pro lepší čitelnost) */
.hero-cta {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    color: #8c734b; /* TMAVŠÍ ZLATÁ / BRONZOVÁ */
    text-decoration: none;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(166, 139, 91, 0.6); /* Ladící linka */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.hero-cta:hover {
    color: #1a1a1a !important;
    border-bottom-color: #1a1a1a !important;
    letter-spacing: 0.35rem !important;
    visibility: visible !important;
    opacity: 1 !important;
}
        /* --- FILOSOFIE --- */
        .philosophy {
            padding: 140px 0;
            background-color: var(--bg-color);
        }

        .philosophy-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 80px;
            align-items: center;
        }

        .philosophy-image img {
            width: 100%;
            height: auto;
            display: block;
            filter: contrast(102%); 
        }

        .philosophy-content {
            display: flex;
            flex-direction: column;
        }

        .philosophy-label {
            display: block;
            font-size: 1rem; /* ZVĚTŠENO */
            text-transform: uppercase;
            letter-spacing: 0.25rem;
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .philosophy-headline {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            line-height: 1.1;
            font-weight: 300;
            margin: 0 0 3rem 0;
        }

        .philosophy-text-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .text-col p {
            font-size: 0.95rem;
            line-height: 1.8;
            font-weight: 300;
            color: #444; 
            margin: 0 0 1.5rem 0;
        }

        /* --- SPOLEČNÉ PRO SLUŽBY --- */
        .service-wrapper {
            width: 100%;
        }

        .service-image-full {
            width: 100%;
            height: 80vh;
            overflow: hidden;
        }

        .service-image-full img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 1.5s ease;
        }

        .service-image-full:hover img {
            transform: scale(1.05);
        }

        /* --- SEKCE: DESIGNOVÉ STĚRKY --- */
        .services-gallery {
            padding: 0 0 120px 0;
            background-color: var(--bg-color);
        }

        .service-content-gallery {
            max-width: 850px;
            margin: 80px auto 0 auto;
            padding: 0 40px;
            text-align: center;
        }

        .service-label-gallery {
            display: block;
            font-size: 0.9rem; /* ZVĚTŠENO */
            text-transform: uppercase;
            letter-spacing: 0.4rem;
            color: var(--accent-gold);
            margin-bottom: 25px;
            font-weight: 500;
        }

        .service-title-gallery {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 300;
            margin-bottom: 40px;
            color: var(--text-dark);
        }

        .service-description-gallery {
            max-width: 700px;
            margin: 0 auto;
        }

        .lead-text-gallery {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--text-dark);
            margin-bottom: 30px;
            font-weight: 300;
        }

        .service-description-gallery p:last-child {
            font-size: 1rem;
            line-height: 1.9;
            color: #666;
            font-weight: 300;
        }

        /* --- SEKCE: MINERÁLNÍ STĚRKY --- */
        .services-mineral {
            padding: 0 0 140px 0;
            background-color: #f2eee9; 
        }

        .service-content-v2 {
            max-width: 850px;
            margin: 80px auto 0 auto;
            padding: 0 40px;
            text-align: center;
        }

        .service-label-v2 {
            display: block;
            font-size: 0.9rem; /* ZVĚTŠENO */
            text-transform: uppercase;
            letter-spacing: 0.4rem;
            color: var(--accent-gold);
            margin-bottom: 25px;
            font-weight: 500;
        }

        .service-title-v2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 300;
            margin-bottom: 40px;
            color: var(--text-dark);
        }

        .service-description-v2 {
            max-width: 700px;
            margin: 0 auto;
        }

        .lead-text-v2 {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--text-dark);
            margin-bottom: 30px;
            font-weight: 300;
        }

        .service-description-v2 p:last-child {
            font-size: 1rem;
            line-height: 1.9;
            color: #5a5a5a;
            font-weight: 300;
        }

        .service-images-split {
            display: flex;
            width: 100%;
            height: 80vh;
            overflow: hidden;
        }

        .split-image {
            flex: 1;
            overflow: hidden;
            border-right: 1px solid var(--bg-color); 
        }

        .split-image:last-child {
            border-right: none;
        }

        .split-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 1.5s ease;
        }

        .split-image:hover img {
            transform: scale(1.05);
        }

        /* --- PROCES SEKCE --- */
        .process-section {
            background-color: var(--bg-color);
            width: 100%;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
        }

        .process-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            width: 100%;
        }

        .process-container-left {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 80px 40px;
        }

        .process-content-inner {
            max-width: 550px;
            width: 100%;
        }

        .process-headline {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            line-height: 1.1;
            font-weight: 300;
            margin-bottom: 3.5rem;
        }

        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .step-item {
            display: flex;
            gap: 25px;
            align-items: flex-start;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(0,0,0,0.06);
        }

        .step-item:last-child {
            border-bottom: none;
        }

        .step-number {
    font-size: 3rem; 
    color: var(--accent-gold);
    padding-top: 2px;
    font-weight: 500;
    font-family: 'Cormorant Garamond', serif; /* Přidáno pro elegantnější vzhled číslic */
    line-height: 1;
}
        .step-text h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem; 
            font-weight: 400;
            margin: 0 0 6px 0;
            color: var(--text-dark);
        }

        .step-text p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #555;
            margin: 0;
        }

        .process-image-full {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: flex-end;
            overflow: hidden;
        }

        .process-image-full img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        /* --- CTA SEKCE --- */
        .cta-mini-section {
            background-color: #f9f8f6; 
            padding: 60px 20px; 
            text-align: center;
            width: 100%;
            display: flex;
            justify-content: center;
            margin-bottom: 0;
            align-items: center;
        }

        .cta-container {
            max-width: 750px;
            margin: 0 auto;
        }

        .cta-headline {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem); 
            font-weight: 300;
            color: #1a1a1a;
            margin-bottom: 2rem;
            line-height: 1.1;
        }

        .cta-text {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            font-weight: 300;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-link-gold {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.25rem;
            color: #c5a059;
            text-decoration: none;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(197, 160, 89, 0.5); 
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
			margin-bottom: 20px;
        }

        .cta-link-gold:hover {
            color: #1a1a1a;
            border-bottom-color: #1a1a1a;
            letter-spacing: 0.35rem;
        }
		/* Základní vzhled tlačítka */
.cta-button-gsap {
    background: transparent;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    padding: 15px 40px;
    text-transform: uppercase;
    /* Zvětšil jsem letter-spacing na 3px, aby to sedělo k tvému novému stylu */
    letter-spacing: 3px; 
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

/* Tady je ten opravený hover */
.cta-button-gsap:hover {
    background: #1a1a1a !important; /* Černé pozadí při najetí */
    color: #ffffff !important;    /* Bílé písmo při najetí */
}

        /* --- GALERIE --- */
        .gallery-pure {
            width: 100%;
            background-color: var(--bg-color);
            line-height: 0;
            margin-top: 0 !important;
            padding-top: 0 !important;
        }

        .gallery-header {
            padding: 40px 20px 90px;
            text-align: center;
            max-width: 750px;
            margin: 0 auto;
        }

        .gallery-label {
            font-family: 'Inter', sans-serif;
            font-size: 1rem; /* ZVĚTŠENO */
            letter-spacing: 0.4rem;
            text-transform: uppercase;
            color: #c5a059;
            display: block;
            margin-bottom: 14px;
            font-weight: 500;
        }

        .gallery-headline {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 300;
            color: #1a1a1a;
            margin-bottom: 14px;
            line-height: 1.1;
        }

        .gallery-description {
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem;
            line-height: 1.7;
            color: #555;
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto;
        }

        .gallery-swiper-pure {
            width: 100%;
            height: 75vh;
        }

        .swiper-slide {
            cursor: pointer;
            overflow: hidden;
        }

        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 1.2s ease;
        }

        .swiper-slide:hover img {
            transform: scale(1.05);
        }

.hamburger{
display:none;
position:absolute;
left:25px;
top:40px;
width:28px;
height:20px;
border:none;
background:none;
cursor:pointer;
z-index:200;
}

.hamburger span{
display:block;
height:2px;
background:#2d2d2d;
margin-bottom:6px;
transition:0.3s;
}
.nav-links.active{
display:flex !important;
flex-direction:column;
position:fixed;
top:0;
left:0;
width:100%;
height:100vh;
background:#fcfaf7;
justify-content:center;
align-items:center;
gap:30px;
z-index:150;
}
.mobile-menu{
display:none;
}

#toast-message{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
display:flex;
align-items:center;
justify-content:center;
background:rgba(0,0,0,0.35);
z-index:9999;
opacity:0;
pointer-events:none;
transition:opacity .3s ease;
}

#toast-message.active{
opacity:1;
pointer-events:auto;
}

.toast-box{
background:#ffffff;
padding:35px 45px;
font-family:'Inter',sans-serif;
font-size:15px;
color:#1a1a1a;
border-radius:2px;
box-shadow:0 15px 50px rgba(0,0,0,0.2);
max-width:420px;
text-align:center;
}

/* LUXURY COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 380px;
    /* Efekt mléčného skla */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    border: 1px solid rgba(197, 166, 124, 0.2); /* Jemný nádech zlaté */
    padding: 30px;
    z-index: 9999;
    display: none;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s ease;
}

.cookie-content p {
    font-size: 13px;
    line-height: 1.7;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.cookie-content a {
    color: #c5a67c;
    text-decoration: none;
    border-bottom: 1px solid rgba(197, 166, 124, 0.3);
    transition: all 0.3s ease;
}

.cookie-content a:hover {
    border-bottom: 1px solid #c5a67c;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.cookie-btn {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.cookie-btn:hover {
    background: #c5a67c;
    transform: translateY(-2px);
}

        /* --- RESPONSIVE --- */
        @media (max-width: 992px) {
            .header-container { padding: 0 30px; }
            .philosophy-container { grid-template-columns: 1fr; gap: 50px; }
            .process-wrapper { grid-template-columns: 1fr; }
            .process-container-left { order: 2; }
            .process-image-full { height: 50vh; order: 1; }
        }

@media (min-width: 769px) and (max-width: 1200px) {
    /* --- HEADER A LOGO --- */
    .site-header {
        padding: 15px 0 !important; /* Méně místa nahoře/dole */
    }

    .header-container {
        display: flex !important;
        flex-direction: row !important; /* Logo a menu vedle sebe */
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 30px !important;
    }

    /* Zmenšení loga, aby nezabíralo celou obrazovku */
    .logo-center {
        margin: 0 !important;
        transform: none !important;
        flex: 0 0 auto;
    }

    .logo-center img {
        height: 130px !important; /* Výrazně menší logo pro desktop/tablet layout */
        width: auto !important;
    }

    /* --- NAVIGACE --- */
    /* Vynutíme zobrazení standardní navigace, pokud ji schováváš */
    .nav-group {
        display: flex !important;
        gap: 20px !important;
    }

    .nav-group a {
        font-size: 13px !important;
        letter-spacing: 2px !important;
        text-transform: uppercase;
        text-decoration: none;
        color: var(--text-dark);
    }

    /* Skryjeme hamburger, pokud ho tam cpeš z mobilní verze */
    .hamburger {
        display: none !important;
    }

    /* --- HERO SEKCE --- */
    .hero-content {
        padding-top: 100px !important; /* Menší odstup shora, když je header užší */
    }
    
    .hero-title {
        font-size: 40px !important;
    }
/* --- 1. ODSTRANĚNÍ MEZERY V HERO SEKCI --- */
    .hero {
        min-height: auto !important; /* Zruší vynucenou výšku na celou obrazovku */
        height: auto !important;
        padding-bottom: 0 !important;
    }

    .hero-content {
        /* První číslo (120px) je odstup odshora - uprav podle toho, jak moc chceš mít logo nad textem */
        padding: 120px 40px 20px 40px !important; 
        margin-bottom: 0 !important;
    }

    /* --- 2. PŘITAŽENÍ NÁSLEDUJÍCÍ SEKCE --- */
    .service-image-full,
    .service-wrapper,
    #about-content {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* --- 3. FIX PRO LOGO A NAVIGACI (aby se nepřekrývaly) --- */
    .site-header {
        position: absolute; /* Nebo fixed, podle toho co používáš */
        width: 100%;
        padding: 10px 0 !important;
    }

    .header-container {
        max-width: 95% !important;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* --- 4. ZMENŠENÍ MEZER MEZI SEKCMI --- */
    section {
        padding: 40px 0 !important; /* Sjednotí mezery mezi bloky na tabletu */
    }
}
@media (max-width: 768px) {
    /* --- ZÁKLADNÍ NASTAVENÍ A HEADER --- */
    .site-header { 
        padding: 35px 0 20px 0; /* Zvětšen horní padding pro logo */
    }

    .header-container { 
        flex-direction: row; 
        justify-content: space-between;
        padding: 0 25px;
        align-items: center;
    }

    .main-nav { 
        width: 100%;
        display: flex;
        align-items: center;
    }

    .nav-group { 
        display: none; 
    }

    .hamburger { 
        display: block; 
        z-index: 200; 
    }

    .logo-center { 
        margin: 0 auto; 
        transform: translateY(10px) !important; /* Posun loga trochu níž */
    }

    .logo-center img { 
        height: 100px; /* Zvětšeno logo v headeru */
        width: auto;
    }

    /* --- MOBILE MENU --- */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fcfaf7;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateY(-100%);
        transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 150;
    }

    .mobile-menu.active {
        transform: translateY(0);
    }

    .mobile-menu a {
        text-decoration: none;
        color: #2d2d2d;
        font-size: 22px;
        letter-spacing: 4px;
        text-transform: uppercase;
        padding: 10px 20px;
    }

    /* --- HERO SEKCE --- */
    .hero {
        min-height: auto; /* Zrušení fixní výšky pro mobil */
    }

    .hero-content {
        padding: 140px 25px 40px 25px; /* Snížen spodní padding z 60px na 40px */
        text-align: center;
    }

    .hero-title {
        font-size: 32px !important;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 16px !important;
        margin-bottom: 25px;
    }

    /* --- SLUŽBY A OBRAZY --- */
    .service-image-full { 
        height: 40vh; /* Sníženo, aby se zmenšila mezera pod Hero */
    }

    .service-images-split { 
        flex-direction: column; 
        height: auto; 
    }

    .split-image { 
        height: 40vh; 
        border-right: none; 
        border-bottom: 1px solid var(--bg-color); 
    }

    /* --- FILOSOFIE --- */
    .philosophy { 
        padding: 50px 0; /* Snížen padding */
    }

    .philosophy-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0 25px;
        text-align: center;
    }

    .philosophy-image { 
        order: -1; 
    }

    /* --- O ATELIÉRU & KONTAKT --- */
    #about-content .container,
    #kontakt .container {
        flex-direction: column !important;
        gap: 40px !important;
        text-align: center;
        padding: 0 25px;
    }

    /* Vycentrování soc. sítí v kontaktu */
    .contact-info .stagger-contact:last-child {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    #about-content .about-image { 
        order: -1; 
    }

    #about-content h2, #kontakt h2 { 
        font-size: 30px !important; 
    }

    #kontakt form {
        padding: 30px 20px !important;
        margin: 0;
    }

    #kontakt form div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    /* --- FOOTER --- */
    footer {
        padding: 60px 0 30px 0 !important;
    }

    footer .container > div:first-child {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center; /* Vycentrování loga ve footeru */
        text-align: center;
    }

    .footer-brand img {
        height: 100px !important; /* Větší logo ve footeru */
        margin: 0 auto 20px auto;
    }

    footer h4, footer p, footer ul {
        text-align: center;
    }

    footer .container > div:last-child {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 20px;
        align-items: center;
    }
    
    footer .container > div:last-child div {
        justify-content: center;
        gap: 15px;
    }

@media (max-width: 768px) {
    /* --- 1. ÚPLNÉ ZABITÍ MEZERY POD HERO --- */
    .hero {
        min-height: auto !important; /* Zruší případnou vynucenou výšku na celou obrazovku */
        height: auto !important;
    }

    .hero-content {
        padding-top: 140px !important;
        padding-bottom: 0 !important; /* Totální nula pod obsahem */
        margin-bottom: -20px !important; /* Můžeme jít i do mínusu, pokud tam stále něco straší */
    }

    /* Pokud máš pod Hero tlačítko nebo text, tohle odstraní jejich spodní okraj */
    .hero-content > *:last-child {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    /* Obrázek hned pod tím přitáhneme nahoru */
    .service-image-full, 
    .service-wrapper {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* Předpokládám, že tyhle sekce jsou uvnitř divu, který má víc potomků */
    footer .container > div:first-child {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important; /* Dva stejné sloupce */
        column-gap: 20px !important;
        row-gap: 40px !important;
        text-align: center;
    }

    /* První sloupec (Logo a text) roztáhneme přes oba sloupce, aby byl nahoře sám a vycentrovaný */
    .footer-brand {
        grid-column: 1 / span 2 !important;
        margin-bottom: 10px;
    }

    /* Zbytek (Navigace, Sledovat, Kontakty) se seřadí do mřížky */
    footer ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    footer h4 {
        margin-bottom: 15px !important;
        font-size: 14px !important;
    }

    /* Poslední sekce (Kontakty/Praha) by měla být zase přes celou šířku, aby to vypadalo symetricky */
    footer .container > div:first-child > div:last-child {
        grid-column: 1 / span 2 !important;
        margin-top: 10px;
    }
    /* --- SWIPER --- */
    .swiper-button-next, 
    .swiper-button-prev {
        display: none !important;
    }
	
    .header-container {
        padding-top: 20px !important; /* Dáme kontejneru padding shora, aby logo nelepilo */
    }

    .logo-center {
        display: block !important;
        margin: 0 auto !important;
        /* Forced reset transformací a nastavení posunu */
        transform: translate(0, 15px) !important; 
        -webkit-transform: translate(0, 15px) !important;
        /* Zajištění, že GSAP to na mobilu nepřebije */
        opacity: 1 !important;
        visibility: visible !important;
    }

    .logo-center img {
        height: 110px !important; /* Ještě o něco větší, aby bylo dominantnější */
        width: auto !important;
        display: block;
        margin: 0 auto;
    }

    /* --- 2. OPRAVA ROZBITÉ SEKCE FILOSOFIE (Z fotky image_4.png) --- */
    /* Z fotky je jasné, že musíme vynutit sloupcový layout */
    
    .philosophy {
        padding: 50px 0 !important;
    }

    .philosophy-container {
        display: flex !important;
        flex-direction: column !important; /* Stack pod sebe */
        gap: 30px !important;
        padding: 0 25px !important;
        align-items: center !important;
        text-align: center !important;
    }

    .philosophy-image {
        order: -1 !important; /* Obrázek nahoru */
        width: 100% !important;
        max-width: 400px !important; /* Aby nebyl obří na výšku */
        margin: 0 auto !important;
    }

    /* Vynucení sloupců i pro ty texty v gridech */
    .philosophy-text-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
    }

    .text-col {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Zmenšení nadpisu filosofie, aby se necpal na moc řádků */
    .philosophy-headline {
        font-size: 26px !important;
        line-height: 1.3 !important;
        margin: 15px 0 !important;
    }

    /* --- 3. AGRESIVNÍ STAŽENÍ MEZERY POD HERO (Z fotky image_1.png a image_5.png) --- */
    .hero-content {
        padding-top: 150px !important; /* Vyšší top, kvůli posunutému logu */
        padding-bottom: 20px !important; /* Velmi malý bottom margin */
    }

    /* Obrázek pod Hero sekcí (z image_1.png) - stáhneme jeho výšku a padding */
    .service-image-full {
        height: 35vh !important; /* Ještě menší výška obrázku */
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* Pokud je pod tím `.service-wrapper` */
    .service-wrapper {
        margin-top: 10px !important; /* Minimální mezera */
    }
    .cookie-banner {
        bottom: 20px;
        right: 20px;
        left: 20px;
        width: auto;
        padding: 25px;
    }
    
    .cookie-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}