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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#090909;
    color:white;
    overflow-x:hidden;
}

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:105px;
    padding:0 80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:50;
    background:rgba(0,0,0,.18);
    border-bottom:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
}

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo img{
    height:75px;
    width:auto;
    display:block;
    transition:0.3s ease;
}

.logo img:hover{
    transform:scale(1.03);
}

.nav{
    display:flex;
    gap:52px;
}

.nav a{
    color:white;
    text-decoration:none;
    text-transform:uppercase;
    font-size:14px;
    letter-spacing:1.5px;
    font-weight:600;
}

.nav a.active,
.nav a:hover{
    color:#d0a85f;
}

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    text-align:center;
}

.hero-image{
    position:absolute;
    inset:0;
    background-image:url("assets/images/hero-bg.png");
    background-size:cover;
    background-position:center;
    transform:scale(1.06);
    filter:brightness(.72) contrast(1.1) saturate(1.12);
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 70% 32%, rgba(255,172,66,.35), transparent 25%),
        linear-gradient(90deg, rgba(0,0,0,.74), rgba(0,0,0,.32), rgba(0,0,0,.62)),
        linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.14), rgba(0,0,0,.86));
}

.hero-watermark{
    position:absolute;
    top:16%;
    left:50%;
    transform:translateX(-50%);
    font-size:22vw;
    font-weight:800;
    line-height:.8;
    letter-spacing:-22px;
    color:rgba(255,255,255,.07);
    user-select:none;
    pointer-events:none;
}

.hero-content{
    position:relative;
    z-index:5;
    max-width:1180px;
    padding:125px 25px 0;
}

.hero-label{
    color:#d0a85f;
    font-size:18px;
    letter-spacing:14px;
    text-transform:uppercase;
    margin-bottom:28px;
}

.hero-content h1{
    font-family:'Cormorant Garamond',serif;
    font-size:86px;
    line-height:.98;
    font-weight:500;
    letter-spacing:3px;
    text-transform:uppercase;
    text-shadow:0 22px 55px rgba(0,0,0,.7);
}

.hero-line{
    width:110px;
    height:1px;
    background:#d0a85f;
    margin:34px auto 26px;
}

.hero-subtitle{
    max-width:850px;
    margin:0 auto 44px;
    font-size:17px;
    line-height:1.8;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:26px;
}

.btn{
    min-width:260px;
    padding:20px 38px;
    border-radius:999px;
    text-decoration:none;
    color:white;
    text-transform:uppercase;
    font-size:14px;
    font-weight:700;
    letter-spacing:1.2px;
    transition:.3s ease;
}

.btn-primary{
    background:linear-gradient(135deg,#d7b46d,#9d7439);
    box-shadow:0 18px 45px rgba(0,0,0,.4);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.85);
    background:rgba(0,0,0,.16);
    backdrop-filter:blur(8px);
}

.btn:hover{
    transform:translateY(-4px);
}

.hero-bottom{
    position:absolute;
    left:50%;
    bottom:-20px;
    transform:translateX(-50%);
    font-family:'Cormorant Garamond',serif;
    font-size:128px;
    letter-spacing:22px;
    color:rgba(255,255,255,.075);
    user-select:none;
    pointer-events:none;
}

@media(max-width:900px){
    .header{
        height:auto;
        padding:24px;
    }

    .nav{
        display:none;
    }

    .logo-main{
        font-size:44px;
    }

    .logo-sub{
        font-size:10px;
        letter-spacing:9px;
    }

    .hero-watermark{
        top:24%;
        font-size:46vw;
        letter-spacing:-10px;
    }

    .hero-content h1{
        font-size:48px;
        letter-spacing:1px;
    }

    .hero-label{
        font-size:13px;
        letter-spacing:8px;
    }

    .hero-subtitle{
        font-size:13px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn{
        min-width:240px;
    }

    .hero-bottom{
        font-size:54px;
        letter-spacing:7px;
        bottom:16px;
    }
}

/* ==================================================
   PROČ THERMOWOOD
================================================== */

.thermowood-section{
    position:relative;
    padding:130px 28px;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(208,168,95,.12),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #0a0907 0%,
            #11100d 55%,
            #0b0a08 100%
        );
    overflow:hidden;
}

.thermowood-section::before{
    content:"THERMOWOOD";
    position:absolute;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    font-family:'Cormorant Garamond', serif;
    font-size:13vw;
    font-weight:500;
    letter-spacing:18px;
    color:rgba(255,255,255,.025);
    white-space:nowrap;
    pointer-events:none;
    user-select:none;
}

.section-container{
    position:relative;
    z-index:2;
    width:min(1200px, 100%);
    margin:0 auto;
}

.section-heading{
    max-width:820px;
    margin:0 auto 72px;
    text-align:center;
}

.section-label{
    margin-bottom:20px;
    color:#d0a85f;
    font-size:13px;
    font-weight:600;
    letter-spacing:4px;
    line-height:1.7;
}

.section-heading h2{
    margin-bottom:24px;
    font-family:'Cormorant Garamond', serif;
    font-size:64px;
    line-height:1.05;
    font-weight:500;
    color:#fff;
}

.section-intro{
    max-width:720px;
    margin:0 auto;
    color:rgba(255,255,255,.68);
    font-size:17px;
    line-height:1.9;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:22px;
}

.benefit-card{
    position:relative;
    min-height:330px;
    padding:42px 32px 36px;
    border:1px solid rgba(255,255,255,.09);
    border-radius:3px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.07),
            rgba(255,255,255,.018)
        );
    box-shadow:0 22px 60px rgba(0,0,0,.24);
    backdrop-filter:blur(8px);
    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease;
    overflow:hidden;
}

.benefit-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:2px;
    background:linear-gradient(
        90deg,
        transparent,
        #d0a85f,
        transparent
    );
    opacity:0;
    transition:opacity .35s ease;
}

.benefit-card:hover{
    transform:translateY(-10px);
    border-color:rgba(208,168,95,.34);
    background:
        linear-gradient(
            145deg,
            rgba(208,168,95,.12),
            rgba(255,255,255,.025)
        );
    box-shadow:0 30px 80px rgba(0,0,0,.36);
}

.benefit-card:hover::before{
    opacity:1;
}

.benefit-number{
    display:block;
    margin-bottom:52px;
    color:#d0a85f;
    font-family:'Cormorant Garamond', serif;
    font-size:42px;
    line-height:1;
    opacity:.9;
}

.benefit-card h3{
    margin-bottom:18px;
    font-family:'Cormorant Garamond', serif;
    font-size:30px;
    line-height:1.15;
    font-weight:600;
    color:#fff;
}

.benefit-card p{
    color:rgba(255,255,255,.62);
    font-size:15px;
    line-height:1.8;
}

/* TABLET */

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

    .thermowood-section::before{
        font-size:16vw;
    }
}

/* MOBIL */

@media(max-width:650px){
    .thermowood-section{
        padding:90px 20px;
    }

    .section-heading{
        margin-bottom:48px;
    }

    .section-heading h2{
        font-size:44px;
    }

    .section-label{
        font-size:11px;
        letter-spacing:3px;
    }

    .section-intro{
        font-size:15px;
        line-height:1.8;
    }

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

    .benefit-card{
        min-height:auto;
        padding:34px 28px;
    }

    .benefit-number{
        margin-bottom:34px;
    }

    .thermowood-section::before{
        top:34px;
        font-size:22vw;
        letter-spacing:8px;
    }
}

/* ==================================================
   NAŠE REALIZACE
================================================== */

.realizace-section{
    position:relative;
    padding:130px 28px 150px;
    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(208,168,95,.10),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #0b0a08 0%,
            #11100d 48%,
            #090806 100%
        );
    overflow:hidden;
}

.realizace-section::before{
    content:"REALIZACE";
    position:absolute;
    top:28px;
    left:50%;
    transform:translateX(-50%);
    font-family:'Cormorant Garamond', serif;
    font-size:14vw;
    font-weight:500;
    letter-spacing:20px;
    color:rgba(255,255,255,.022);
    white-space:nowrap;
    pointer-events:none;
    user-select:none;
}

.realizace-heading{
    max-width:820px;
    margin:0 auto 72px;
    text-align:center;
}

.realizace-heading h2{
    margin-bottom:22px;
    font-family:'Cormorant Garamond', serif;
    font-size:66px;
    line-height:1.05;
    font-weight:500;
    color:#fff;
}

.realizace-heading > p:last-child{
    max-width:700px;
    margin:0 auto;
    color:rgba(255,255,255,.66);
    font-size:17px;
    line-height:1.9;
}

/* MOZAIKA */

.realizace-grid{
    display:grid;
    grid-template-columns:repeat(12, 1fr);
    grid-auto-rows:235px;
    gap:18px;
}

.realizace-item{
    position:relative;
    display:block;
    grid-column:span 4;
    overflow:hidden;
    border-radius:4px;
    background:#16130f;
    box-shadow:0 24px 70px rgba(0,0,0,.28);
    isolation:isolate;
}

.realizace-large{
    grid-column:span 8;
    grid-row:span 2;
}

.realizace-wide{
    grid-column:span 8;
}

.realizace-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:
        transform .75s cubic-bezier(.2,.7,.2,1),
        filter .5s ease;
}

.realizace-item::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.02) 20%,
            rgba(0,0,0,.18) 55%,
            rgba(0,0,0,.82) 100%
        );
    transition:background .4s ease;
}

.realizace-item:hover img{
    transform:scale(1.065);
    filter:saturate(1.08) contrast(1.04);
}

.realizace-item:hover::after{
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.08) 10%,
            rgba(0,0,0,.30) 52%,
            rgba(0,0,0,.90) 100%
        );
}

/* TEXT VE FOTCE */

.realizace-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:3;
    padding:34px;
    color:#fff;
    transform:translateY(10px);
    transition:transform .4s ease;
}

.realizace-item:hover .realizace-overlay{
    transform:translateY(0);
}

.realizace-overlay span{
    display:block;
    margin-bottom:9px;
    color:#d0a85f;
    font-size:11px;
    font-weight:700;
    letter-spacing:2.2px;
    text-transform:uppercase;
}

.realizace-overlay strong{
    display:block;
    max-width:78%;
    font-family:'Cormorant Garamond', serif;
    font-size:29px;
    line-height:1.12;
    font-weight:600;
}

.realizace-large .realizace-overlay strong{
    font-size:40px;
}

.realizace-arrow{
    position:absolute;
    right:28px;
    bottom:28px;
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.42);
    border-radius:50%;
    background:rgba(0,0,0,.18);
    color:#fff;
    font-size:21px;
    backdrop-filter:blur(8px);
    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.realizace-item:hover .realizace-arrow{
    background:#d0a85f;
    border-color:#d0a85f;
    transform:rotate(45deg);
}

/* CTA POD GALERIÍ */

.realizace-cta{
    margin-top:68px;
    text-align:center;
}

.realizace-cta p{
    margin-bottom:24px;
    font-family:'Cormorant Garamond', serif;
    font-size:31px;
    color:#fff;
}

/* LIGHTBOX */

.lightbox{
    position:fixed;
    inset:0;
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:36px;
    background:rgba(0,0,0,.94);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.lightbox.is-open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.lightbox-image{
    display:block;
    max-width:min(1400px, 94vw);
    max-height:88vh;
    width:auto;
    height:auto;
    object-fit:contain;
    box-shadow:0 30px 100px rgba(0,0,0,.55);
}

.lightbox-close{
    position:absolute;
    top:22px;
    right:30px;
    width:54px;
    height:54px;
    border:1px solid rgba(255,255,255,.28);
    border-radius:50%;
    background:rgba(255,255,255,.06);
    color:#fff;
    font-family:Arial, sans-serif;
    font-size:34px;
    line-height:1;
    cursor:pointer;
    backdrop-filter:blur(8px);
    transition:
        background .3s ease,
        transform .3s ease;
}

.lightbox-close:hover{
    background:#d0a85f;
    transform:rotate(90deg);
}

/* TABLET */

@media(max-width:1050px){
    .realizace-grid{
        grid-template-columns:repeat(2, 1fr);
        grid-auto-rows:300px;
    }

    .realizace-item,
    .realizace-large,
    .realizace-wide{
        grid-column:auto;
        grid-row:auto;
    }

    .realizace-heading h2{
        font-size:58px;
    }

    .realizace-section::before{
        font-size:17vw;
    }
}

/* MOBIL */

@media(max-width:650px){
    .realizace-section{
        padding:90px 20px 110px;
    }

    .realizace-heading{
        margin-bottom:48px;
    }

    .realizace-heading h2{
        font-size:44px;
    }

    .realizace-heading > p:last-child{
        font-size:15px;
        line-height:1.8;
    }

    .realizace-grid{
        grid-template-columns:1fr;
        grid-auto-rows:330px;
        gap:14px;
    }

    .realizace-overlay{
        padding:26px 24px;
    }

    .realizace-overlay strong,
    .realizace-large .realizace-overlay strong{
        max-width:82%;
        font-size:28px;
    }

    .realizace-arrow{
        right:20px;
        bottom:22px;
        width:44px;
        height:44px;
    }

    .realizace-section::before{
        top:42px;
        font-size:23vw;
        letter-spacing:9px;
    }

    .lightbox{
        padding:18px;
    }

    .lightbox-close{
        top:14px;
        right:14px;
    }
}

/* ==================================================
   NOVÉ ROZLOŽENÍ GALERIE
   7 FOTEK + DALŠÍ REALIZACE
================================================== */

.realizace-grid{
    display:grid;
    grid-template-columns:repeat(12, 1fr);
    grid-template-rows:repeat(4, 240px);
    gap:18px;
}

/* Velká fotografie vlevo nahoře */

.realizace-grid > :nth-child(1){
    grid-column:1 / 9;
    grid-row:1 / 3;
}

/* Dvě fotografie vpravo nahoře */

.realizace-grid > :nth-child(2){
    grid-column:9 / 13;
    grid-row:1 / 2;
}

.realizace-grid > :nth-child(3){
    grid-column:9 / 13;
    grid-row:2 / 3;
}

/* Tři fotografie uprostřed */

.realizace-grid > :nth-child(4){
    grid-column:1 / 5;
    grid-row:3 / 4;
}

.realizace-grid > :nth-child(5){
    grid-column:5 / 9;
    grid-row:3 / 4;
}

.realizace-grid > :nth-child(6){
    grid-column:9 / 13;
    grid-row:3 / 4;
}

/* Poslední fotka a odkaz na další realizace */

.realizace-grid > :nth-child(7){
    grid-column:1 / 7;
    grid-row:4 / 5;
}

.realizace-grid > :nth-child(8){
    grid-column:7 / 13;
    grid-row:4 / 5;
}

/* ČISTÉ FOTOGRAFIE */

.realizace-item{
    border-radius:4px;
}

.realizace-item::after{
    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0,0,0,.22) 100%
        );
}

.realizace-item:hover::after{
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.04),
            rgba(0,0,0,.28)
        );
}

/* KARTA DALŠÍ REALIZACE */

.realizace-more{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:22px;
    overflow:hidden;
    border:1px solid rgba(208,168,95,.28);
    border-radius:4px;
    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(208,168,95,.18),
            transparent 55%
        ),
        linear-gradient(
            145deg,
            #191610,
            #0d0c09
        );
    color:#fff;
    text-decoration:none;
    box-shadow:0 24px 70px rgba(0,0,0,.28);
    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}

.realizace-more::before{
    content:"";
    position:absolute;
    inset:18px;
    border:1px solid rgba(255,255,255,.06);
    pointer-events:none;
    transition:border-color .4s ease;
}

.realizace-more::after{
    content:"AJM";
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
    font-family:'Cormorant Garamond', serif;
    font-size:160px;
    font-weight:600;
    letter-spacing:-10px;
    color:rgba(255,255,255,.025);
    pointer-events:none;
}

.realizace-more span{
    position:relative;
    z-index:2;
    font-family:'Cormorant Garamond', serif;
    font-size:40px;
    font-weight:500;
    letter-spacing:1px;
}

.realizace-more-arrow{
    position:relative;
    z-index:2;
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.3);
    border-radius:50%;
    color:#d0a85f;
    font-size:26px;
    transition:
        transform .4s ease,
        color .4s ease,
        background .4s ease,
        border-color .4s ease;
}

.realizace-more:hover{
    transform:translateY(-7px);
    border-color:rgba(208,168,95,.7);
    box-shadow:0 32px 85px rgba(0,0,0,.42);
}

.realizace-more:hover::before{
    border-color:rgba(208,168,95,.2);
}

.realizace-more:hover .realizace-more-arrow{
    transform:translateX(8px);
    color:#111;
    border-color:#d0a85f;
    background:#d0a85f;
}

/* TABLET */

@media(max-width:1050px){

    .realizace-grid{
        grid-template-columns:repeat(2, 1fr);
        grid-template-rows:none;
        grid-auto-rows:300px;
    }

    .realizace-grid > :nth-child(n){
        grid-column:auto;
        grid-row:auto;
    }

    .realizace-grid > :nth-child(1){
        grid-column:1 / 3;
        min-height:500px;
    }

    .realizace-more span{
        font-size:34px;
    }
}

/* MOBIL */

@media(max-width:650px){

    .realizace-grid{
        grid-template-columns:1fr;
        grid-auto-rows:320px;
    }

    .realizace-grid > :nth-child(n),
    .realizace-grid > :nth-child(1){
        grid-column:auto;
        grid-row:auto;
        min-height:0;
    }

    .realizace-more{
        min-height:260px;
    }

    .realizace-more span{
        font-size:32px;
    }

    .realizace-more::after{
        font-size:110px;
    }
}

/* ==================================================
   JAK PROBÍHÁ SPOLUPRÁCE
================================================== */

.process-section{
    position:relative;
    padding:130px 28px 145px;
    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(208,168,95,.10),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #090806 0%,
            #11100d 52%,
            #0a0907 100%
        );
    overflow:hidden;
}

.process-section::before{
    content:"SPOLUPRÁCE";
    position:absolute;
    top:30px;
    left:50%;
    transform:translateX(-50%);
    font-family:'Cormorant Garamond', serif;
    font-size:13vw;
    font-weight:500;
    letter-spacing:18px;
    color:rgba(255,255,255,.022);
    white-space:nowrap;
    pointer-events:none;
    user-select:none;
}

.process-heading{
    max-width:820px;
    margin:0 auto 75px;
    text-align:center;
}

.process-heading h2{
    margin-bottom:22px;
    font-family:'Cormorant Garamond', serif;
    font-size:66px;
    line-height:1.05;
    font-weight:500;
    color:#fff;
}

.process-heading > p:last-child{
    max-width:700px;
    margin:0 auto;
    color:rgba(255,255,255,.66);
    font-size:17px;
    line-height:1.9;
}

.process-grid{
    position:relative;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:22px;
}

/* Spojovací linka */

.process-grid::before{
    content:"";
    position:absolute;
    top:58px;
    left:12%;
    right:12%;
    height:1px;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(208,168,95,.45),
        rgba(208,168,95,.45),
        transparent
    );
    z-index:0;
}

.process-card{
    position:relative;
    z-index:2;
    min-height:340px;
    padding:42px 30px 36px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:4px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.065),
            rgba(255,255,255,.018)
        );
    box-shadow:0 24px 65px rgba(0,0,0,.26);
    backdrop-filter:blur(8px);
    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

.process-card:hover{
    transform:translateY(-10px);
    border-color:rgba(208,168,95,.35);
    background:
        linear-gradient(
            145deg,
            rgba(208,168,95,.11),
            rgba(255,255,255,.022)
        );
    box-shadow:0 32px 85px rgba(0,0,0,.38);
}

.process-number{
    position:relative;
    width:72px;
    height:72px;
    margin:0 auto 46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(208,168,95,.45);
    border-radius:50%;
    background:#11100d;
    color:#d0a85f;
    font-family:'Cormorant Garamond', serif;
    font-size:30px;
    font-weight:600;
    box-shadow:0 12px 35px rgba(0,0,0,.32);
    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease;
}

.process-card:hover .process-number{
    background:#d0a85f;
    color:#111;
    transform:scale(1.08);
}

.process-card h3{
    margin-bottom:18px;
    text-align:center;
    font-family:'Cormorant Garamond', serif;
    font-size:29px;
    line-height:1.15;
    font-weight:600;
    color:#fff;
}

.process-card p{
    color:rgba(255,255,255,.62);
    font-size:15px;
    line-height:1.8;
    text-align:center;
}

/* TABLET */

@media(max-width:1050px){

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

    .process-grid::before{
        display:none;
    }

    .process-section::before{
        font-size:17vw;
    }
}

/* MOBIL */

@media(max-width:650px){

    .process-section{
        padding:90px 20px 110px;
    }

    .process-heading{
        margin-bottom:48px;
    }

    .process-heading h2{
        font-size:44px;
    }

    .process-heading > p:last-child{
        font-size:15px;
        line-height:1.8;
    }

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

    .process-card{
        min-height:auto;
        padding:34px 26px;
    }

    .process-number{
        margin-bottom:32px;
    }

    .process-section::before{
        top:42px;
        font-size:22vw;
        letter-spacing:8px;
    }
}

/* ==================================================
   NAŠE SLUŽBY
================================================== */

.services-section{
    position:relative;
    padding:140px 30px;
    background:
        radial-gradient(circle at 15% 20%, rgba(208,168,95,.08), transparent 30%),
        linear-gradient(180deg,#0a0907,#11100d,#090806);
}

.services-section::before{
    content:"SLUŽBY";
    position:absolute;
    top:35px;
    left:50%;
    transform:translateX(-50%);
    font-family:'Cormorant Garamond',serif;
    font-size:13vw;
    color:rgba(255,255,255,.02);
    letter-spacing:20px;
    pointer-events:none;
}

.services-heading{
    max-width:820px;
    margin:0 auto 90px;
    text-align:center;
}

.services-heading h2{
    font-family:'Cormorant Garamond',serif;
    font-size:66px;
    margin-bottom:24px;
    font-weight:500;
}

.services-heading p:last-child{
    color:rgba(255,255,255,.68);
    line-height:1.9;
    font-size:17px;
}

.services-list{
    display:flex;
    flex-direction:column;
    gap:110px;
}

/* ====== ŘÁDEK ====== */

.service-row{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:70px;
    align-items:center;
}

.service-row-reverse{
    grid-template-columns:1fr 1.2fr;
}

.service-row-reverse .service-image{
    order:2;
}

.service-row-reverse .service-content{
    order:1;
}

/* ===== FOTO ===== */

.service-image{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:420px;
    padding:18px;
    overflow:hidden;
    border-radius:8px;
    background:transparent;
    border:1px solid rgba(255,255,255,.05);
    box-shadow:0 35px 90px rgba(0,0,0,.35);
}

.service-image img{
    width:100%;
    height:420px;
    display:block;
    object-fit:contain;
    transition:.8s ease;
}

.service-image:hover img{
    transform:scale(1.025);
}

/* ===== TEXT ===== */

.service-number{

    color:#d0a85f;

    font-family:'Cormorant Garamond',serif;

    font-size:58px;

    display:block;

    margin-bottom:25px;

}

.service-content h3{

    font-family:'Cormorant Garamond',serif;

    font-size:48px;

    margin-bottom:22px;

    font-weight:500;

}

.service-content p{

    color:rgba(255,255,255,.68);

    font-size:17px;

    line-height:1.9;

}

/* CTA */

.services-cta{

    margin-top:120px;

    padding:90px;

    text-align:center;

    border-radius:10px;

    background:
    linear-gradient(
        145deg,
        rgba(208,168,95,.12),
        rgba(255,255,255,.03)
    );

    border:1px solid rgba(208,168,95,.18);

}

.services-cta p{

    color:#d0a85f;

    letter-spacing:3px;

    margin-bottom:18px;

}

.services-cta h3{

    font-family:'Cormorant Garamond',serif;

    font-size:52px;

    font-weight:500;

    margin-bottom:42px;

}

/* Tablet */

@media(max-width:1000px){

.service-row,

.service-row-reverse{

grid-template-columns:1fr;

}

.service-row-reverse .service-image,

.service-row-reverse .service-content{

order:unset;

}

.services-heading h2{

font-size:52px;

}

.services-cta{

padding:60px 30px;

}

}

/* Mobil */

@media(max-width:650px){

.services-section{

padding:90px 20px;

}

.services-heading{

margin-bottom:60px;

}

.services-heading h2{

font-size:42px;

}

.service-content h3{

font-size:36px;

}

.service-number{

font-size:46px;

}

.services-cta h3{

font-size:36px;

}

}

@media(max-width:650px){
    .service-image{
        min-height:280px;
        padding:10px;
    }

    .service-image img{
        height:280px;
    }
}

/* ==================================================
   ROZKLIKNUTÍ FOTEK VE SLUŽBÁCH
================================================== */

.service-image{
    position:relative;
    cursor:zoom-in;
    outline:none;
}

.service-image::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:2;
    background:rgba(0,0,0,0);
    pointer-events:none;
    transition:background .35s ease;
}

.service-image::after{
    content:"Klikněte pro zvětšení";
    position:absolute;
    left:50%;
    top:50%;
    z-index:3;
    transform:translate(-50%, -42%);
    padding:13px 22px;
    border:1px solid rgba(255,255,255,.42);
    border-radius:999px;
    background:rgba(0,0,0,.48);
    color:#fff;
    font-size:12px;
    font-weight:600;
    letter-spacing:1.2px;
    text-transform:uppercase;
    white-space:nowrap;
    opacity:0;
    pointer-events:none;
    backdrop-filter:blur(8px);
    transition:
        opacity .35s ease,
        transform .35s ease,
        border-color .35s ease;
}

.service-image:hover::before,
.service-image:focus::before{
    background:rgba(0,0,0,.24);
}

.service-image:hover::after,
.service-image:focus::after{
    opacity:1;
    transform:translate(-50%, -50%);
    border-color:rgba(208,168,95,.75);
}

.service-image:hover img{
    transform:scale(1.025);
}

/* ==================================================
   PROČ AJM DESIGN
================================================== */

.why-ajm-section{

    position:relative;

    padding:140px 30px;

    overflow:hidden;

    background:
    radial-gradient(
        circle at 85% 15%,
        rgba(208,168,95,.08),
        transparent 28%
    ),

    linear-gradient(
        180deg,
        #090806,
        #11100d,
        #090806
    );

}

.why-ajm-section::before{

    content:"AJM";

    position:absolute;

    left:50%;

    top:48%;

    transform:translate(-50%,-50%);

    font-family:'Cormorant Garamond',serif;

    font-size:18vw;

    font-weight:700;

    letter-spacing:-12px;

    color:rgba(255,255,255,.025);

    pointer-events:none;

    user-select:none;

}

.why-ajm-heading{

    max-width:820px;

    margin:0 auto 90px;

    text-align:center;

}

.why-ajm-heading h2{

    font-family:'Cormorant Garamond',serif;

    font-size:66px;

    font-weight:500;

    margin-bottom:22px;

}

.why-ajm-heading p:last-child{

    color:rgba(255,255,255,.68);

    line-height:1.9;

    font-size:17px;

}

.why-ajm-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:26px;

}

.why-ajm-card{

    padding:45px 35px;

    border-radius:6px;

    background:

    linear-gradient(

        145deg,

        rgba(255,255,255,.055),

        rgba(255,255,255,.015)

    );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(8px);

    transition:.35s;

}

.why-ajm-card:hover{

    transform:translateY(-10px);

    border-color:rgba(208,168,95,.35);

    background:

    linear-gradient(

        145deg,

        rgba(208,168,95,.11),

        rgba(255,255,255,.02)

    );

    box-shadow:0 30px 80px rgba(0,0,0,.35);

}

.why-ajm-icon{
    width:72px;
    height:72px;
    margin-bottom:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    border:1px solid rgba(208,168,95,.35);
    color:#d0a85f;
    transition:
        background .35s ease,
        color .35s ease,
        border-color .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}

.why-ajm-icon svg{
    width:31px;
    height:31px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.6;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.why-ajm-card:hover .why-ajm-icon{
    background:#d0a85f;
    color:#111;
    border-color:#d0a85f;
    transform:translateY(-4px) scale(1.06);
    box-shadow:0 14px 34px rgba(208,168,95,.22);
}

.why-ajm-card h3{

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    margin-bottom:18px;

    font-weight:500;

}

.why-ajm-card p{

    color:rgba(255,255,255,.66);

    line-height:1.8;

}

/* Tablet */

@media(max-width:1000px){

.why-ajm-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* Mobil */

@media(max-width:650px){

.why-ajm-section{

padding:90px 20px;

}

.why-ajm-heading{

margin-bottom:55px;

}

.why-ajm-heading h2{

font-size:44px;

}

.why-ajm-grid{

grid-template-columns:1fr;

}

}

/* ==================================================
   SCROLL ANIMACE
================================================== */

.reveal{

    opacity:0;

    transform:translateY(70px);

    transition:

        opacity .9s ease,

        transform .9s ease;

    will-change:transform, opacity;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

/* ==================================================
   O NÁS
================================================== */

.about-section{
    position:relative;
    padding:145px 30px 150px;
    overflow:hidden;
    background:
        radial-gradient(circle at 12% 15%, rgba(208,168,95,.09), transparent 30%),
        linear-gradient(180deg,#090806 0%,#11100d 50%,#090806 100%);
}

.about-section::before{
    content:"O NÁS";
    position:absolute;
    top:34px;
    left:50%;
    transform:translateX(-50%);
    font-family:'Cormorant Garamond',serif;
    font-size:14vw;
    font-weight:600;
    letter-spacing:18px;
    color:rgba(255,255,255,.022);
    white-space:nowrap;
    pointer-events:none;
    user-select:none;
}

.about-intro{
    display:grid;
    grid-template-columns:1.05fr 1fr;
    gap:78px;
    align-items:center;
}

.about-image{
    position:relative;
    min-height:600px;
    overflow:hidden;
    border-radius:10px;
    border:1px solid rgba(255,255,255,.07);
    box-shadow:0 35px 95px rgba(0,0,0,.42);
}

.about-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.18)),
        radial-gradient(circle at 70% 20%,rgba(208,168,95,.14),transparent 38%);
    pointer-events:none;
}

.about-image img{
    width:100%;
    height:100%;
    min-height:600px;
    display:block;
    object-fit:cover;
    object-position:center;
    transition:transform .8s ease, filter .8s ease;
}

.about-image:hover img{
    transform:scale(1.035);
    filter:saturate(1.04) contrast(1.03);
}

.about-content h2,
.vision-heading h2,
.future-heading h2,
.team-heading h2,
.contact-heading h2{
    margin-bottom:28px;
    font-family:'Cormorant Garamond',serif;
    font-size:66px;
    line-height:1.02;
    font-weight:500;
}

.about-content > p:not(.section-label){
    margin-bottom:20px;
    color:rgba(255,255,255,.69);
    font-size:16px;
    line-height:1.9;
}

.about-highlight{
    position:relative;
    margin-top:34px;
    padding:24px 26px 24px 30px;
    border-left:2px solid #d0a85f;
    background:linear-gradient(90deg,rgba(208,168,95,.10),transparent);
    color:#fff !important;
    font-family:'Cormorant Garamond',serif;
    font-size:27px !important;
    line-height:1.35 !important;
}

/* ==================================================
   NAŠE VIZE
================================================== */

.vision-block{
    margin-top:150px;
    padding:70px;
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:70px;
    align-items:start;
    border:1px solid rgba(208,168,95,.18);
    border-radius:10px;
    background:
        radial-gradient(circle at 10% 20%,rgba(208,168,95,.12),transparent 35%),
        linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.012));
    box-shadow:0 28px 80px rgba(0,0,0,.28);
}

.vision-content p{
    margin-bottom:22px;
    color:rgba(255,255,255,.68);
    font-size:16px;
    line-height:1.9;
}

.vision-content blockquote{
    position:relative;
    margin-top:38px;
    padding:28px 0 0 38px;
    color:#fff;
    font-family:'Cormorant Garamond',serif;
    font-size:32px;
    line-height:1.35;
}

.vision-content blockquote::before{
    content:"“";
    position:absolute;
    left:0;
    top:-4px;
    color:#d0a85f;
    font-size:72px;
    line-height:1;
}

/* ==================================================
   DO BUDOUCNA PŘIPRAVUJEME
================================================== */

.future-block{
    margin-top:150px;
}

.future-heading,
.team-heading,
.contact-heading{
    max-width:840px;
    margin:0 auto 72px;
    text-align:center;
}

.future-heading > p:last-child,
.team-heading > p:last-child,
.contact-heading > p:last-child{
    max-width:720px;
    margin:0 auto;
    color:rgba(255,255,255,.67);
    font-size:16px;
    line-height:1.9;
}

.future-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.future-card{
    min-height:330px;
    padding:38px 30px 34px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:8px;
    background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.014));
    box-shadow:0 24px 68px rgba(0,0,0,.24);
    transition:transform .35s ease,border-color .35s ease,background .35s ease,box-shadow .35s ease;
}

.future-card:hover{
    transform:translateY(-9px);
    border-color:rgba(208,168,95,.35);
    background:linear-gradient(145deg,rgba(208,168,95,.10),rgba(255,255,255,.02));
    box-shadow:0 32px 84px rgba(0,0,0,.36);
}

.future-icon{
    width:70px;
    height:70px;
    margin-bottom:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(208,168,95,.34);
    border-radius:50%;
    color:#d0a85f;
    transition:background .35s ease,color .35s ease,transform .35s ease,box-shadow .35s ease;
}

.future-icon svg{
    width:30px;
    height:30px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.6;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.future-card:hover .future-icon{
    background:#d0a85f;
    color:#111;
    transform:translateY(-4px) scale(1.05);
    box-shadow:0 14px 34px rgba(208,168,95,.20);
}

.future-card h3{
    margin-bottom:16px;
    font-family:'Cormorant Garamond',serif;
    font-size:30px;
    line-height:1.15;
    font-weight:500;
}

.future-card p{
    color:rgba(255,255,255,.63);
    font-size:15px;
    line-height:1.8;
}

/* ==================================================
   NÁŠ TÝM
================================================== */

.team-block{
    margin-top:155px;
}

.team-grid{
    position:relative;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:34px;
}

.team-grid::before{
    content:"";
    position:absolute;
    top:8%;
    bottom:8%;
    left:50%;
    width:1px;
    transform:translateX(-50%);
    background:linear-gradient(180deg,transparent,rgba(208,168,95,.30),transparent);
}

.team-card{
    position:relative;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    border-radius:10px;
    background:linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.014));
    box-shadow:0 30px 88px rgba(0,0,0,.30);
    transition:transform .4s ease,border-color .4s ease,box-shadow .4s ease;
}

.team-card:hover{
    transform:translateY(-9px);
    border-color:rgba(208,168,95,.40);
    box-shadow:0 38px 100px rgba(0,0,0,.42);
}

.team-photo{
    position:relative;
    height:560px;
    overflow:hidden;
    background:#11100d;
}

.team-photo img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center top;
    transition:transform .8s ease,filter .8s ease;
}

.team-photo-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(180deg,transparent 48%,rgba(0,0,0,.82) 100%),
        radial-gradient(circle at 50% 10%,rgba(208,168,95,.10),transparent 40%);
    pointer-events:none;
}

.team-card:hover .team-photo img{
    transform:scale(1.04);
    filter:saturate(1.04) contrast(1.03);
}

.team-info{
    padding:34px 34px 38px;
}

.team-label{
    margin-bottom:12px;
    color:#d0a85f;
    font-size:11px;
    font-weight:700;
    letter-spacing:3px;
}

.team-info h3{
    margin-bottom:8px;
    font-family:'Cormorant Garamond',serif;
    font-size:48px;
    line-height:1;
    font-weight:500;
}

.team-role{
    margin-bottom:20px;
    color:#d0a85f;
    font-size:13px;
    font-weight:600;
    letter-spacing:1.3px;
    text-transform:uppercase;
}

.team-description{
    color:rgba(255,255,255,.66);
    font-size:15px;
    line-height:1.8;
}

.team-quote{
    position:relative;
    max-width:900px;
    margin:90px auto 0;
    padding:34px 54px;
    text-align:center;
    border-top:1px solid rgba(208,168,95,.28);
    border-bottom:1px solid rgba(208,168,95,.28);
}

.team-quote span{
    display:block;
    height:32px;
    margin-bottom:10px;
    color:#d0a85f;
    font-family:'Cormorant Garamond',serif;
    font-size:78px;
    line-height:.7;
}

.team-quote p{
    font-family:'Cormorant Garamond',serif;
    font-size:34px;
    line-height:1.35;
}

/* ==================================================
   ZÁVĚREČNÁ CTA SEKCE
================================================== */

.cta-section{
    position:relative;
    min-height:620px;
    padding:140px 30px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    text-align:center;
    background:url("assets/images/tym-spolecna.jpg") center 38% / cover no-repeat;
}

.cta-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:
        radial-gradient(circle at 50% 42%,rgba(208,168,95,.20),transparent 34%),
        linear-gradient(90deg,rgba(0,0,0,.84),rgba(0,0,0,.55),rgba(0,0,0,.84)),
        linear-gradient(180deg,rgba(0,0,0,.38),rgba(0,0,0,.78));
}

.cta-watermark{
    position:absolute;
    left:50%;
    top:50%;
    z-index:2;
    transform:translate(-50%,-50%);
    font-family:'Cormorant Garamond',serif;
    font-size:29vw;
    line-height:.75;
    font-weight:700;
    letter-spacing:-24px;
    color:rgba(255,255,255,.055);
    pointer-events:none;
    user-select:none;
}

.cta-content{
    position:relative;
    z-index:3;
    width:min(850px,100%);
    margin:0 auto;
}

.cta-content h2{
    margin-bottom:26px;
    font-family:'Cormorant Garamond',serif;
    font-size:76px;
    line-height:1;
    font-weight:500;
    text-shadow:0 18px 45px rgba(0,0,0,.55);
}

.cta-content > p:not(.section-label){
    max-width:680px;
    margin:0 auto 42px;
    color:rgba(255,255,255,.78);
    font-size:18px;
    line-height:1.9;
}

/* ==================================================
   KONTAKT
================================================== */

.contact-section{
    position:relative;
    padding:145px 30px;
    overflow:hidden;
    background:
        radial-gradient(circle at 88% 14%,rgba(208,168,95,.10),transparent 30%),
        linear-gradient(180deg,#090806,#11100d,#080705);
}

.contact-section::before{
    content:"KONTAKT";
    position:absolute;
    top:34px;
    left:50%;
    transform:translateX(-50%);
    font-family:'Cormorant Garamond',serif;
    font-size:14vw;
    font-weight:600;
    letter-spacing:18px;
    color:rgba(255,255,255,.022);
    pointer-events:none;
    user-select:none;
}

.contact-grid{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:70px;
    align-items:start;
}

.contact-copy{
    padding:52px 44px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:10px;
    background:linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.014));
    box-shadow:0 28px 80px rgba(0,0,0,.28);
}

.contact-copy h3{
    margin-bottom:18px;
    font-family:'Cormorant Garamond',serif;
    font-size:46px;
    font-weight:500;
}

.contact-copy > p{
    color:rgba(255,255,255,.66);
    font-size:16px;
    line-height:1.9;
}

.contact-note{
    margin-top:34px;
    padding:22px 24px;
    border-left:2px solid #d0a85f;
    background:linear-gradient(90deg,rgba(208,168,95,.10),transparent);
    color:rgba(255,255,255,.78);
    font-size:14px;
    line-height:1.7;
}

.contact-form{
    display:grid;
    gap:22px;
    padding:46px;
    border:1px solid rgba(208,168,95,.16);
    border-radius:10px;
    background:linear-gradient(145deg,rgba(208,168,95,.08),rgba(255,255,255,.018));
    box-shadow:0 30px 85px rgba(0,0,0,.30);
}

.contact-form label{
    display:grid;
    gap:10px;
    color:#d0a85f;
    font-size:12px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    border:1px solid rgba(255,255,255,.12);
    border-radius:5px;
    outline:none;
    background:rgba(0,0,0,.24);
    color:#fff;
    font:inherit;
    padding:15px 16px;
    transition:border-color .3s ease,background .3s ease,box-shadow .3s ease;
}

.contact-form textarea{
    resize:vertical;
    min-height:150px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:rgba(208,168,95,.70);
    background:rgba(0,0,0,.34);
    box-shadow:0 0 0 3px rgba(208,168,95,.08);
}

.contact-form .btn{
    border:0;
    cursor:pointer;
    justify-self:start;
}

/* ==================================================
   FOOTER
================================================== */

.footer{
    position:relative;
    min-height:380px;
    padding:95px 30px 55px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.07);
    background:#070604;
}

.footer-watermark{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    font-family:'Cormorant Garamond',serif;
    font-size:30vw;
    line-height:.7;
    font-weight:700;
    letter-spacing:-24px;
    color:rgba(255,255,255,.025);
    pointer-events:none;
    user-select:none;
}

.footer-inner{
    position:relative;
    z-index:2;
}

.footer-logo{
    display:inline-block;
    margin-bottom:24px;
}

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

.footer-inner > p{
    color:rgba(255,255,255,.65);
    font-size:14px;
    line-height:1.8;
    letter-spacing:1px;
}

.footer-copy{
    margin-top:24px;
    color:rgba(255,255,255,.38) !important;
    font-size:12px !important;
}

/* ==================================================
   RESPONZIVITA NOVÝCH SEKCI
================================================== */

@media(max-width:1050px){
    .about-intro,
    .vision-block,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .about-image{
        min-height:520px;
    }

    .about-image img{
        min-height:520px;
    }

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

    .team-photo{
        height:500px;
    }

    .vision-block{
        padding:55px 44px;
    }
}

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

    .team-grid::before{
        display:none;
    }

    .about-section,
    .contact-section{
        padding:95px 20px 105px;
    }

    .about-content h2,
    .vision-heading h2,
    .future-heading h2,
    .team-heading h2,
    .contact-heading h2{
        font-size:46px;
    }

    .about-image,
    .about-image img{
        min-height:420px;
    }

    .vision-block{
        margin-top:100px;
        padding:42px 28px;
    }

    .vision-content blockquote{
        font-size:27px;
    }

    .future-block,
    .team-block{
        margin-top:105px;
    }

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

    .future-card{
        min-height:auto;
    }

    .team-photo{
        height:470px;
    }

    .team-quote{
        margin-top:65px;
        padding:30px 18px;
    }

    .team-quote p{
        font-size:28px;
    }

    .cta-section{
        min-height:560px;
        padding:110px 22px;
        background-position:center;
    }

    .cta-content h2{
        font-size:54px;
    }

    .cta-watermark{
        font-size:48vw;
        letter-spacing:-12px;
    }

    .contact-form,
    .contact-copy{
        padding:34px 26px;
    }

    .contact-form .btn{
        width:100%;
        justify-self:stretch;
    }
}

@media(max-width:500px){
    .about-content h2,
    .vision-heading h2,
    .future-heading h2,
    .team-heading h2,
    .contact-heading h2{
        font-size:40px;
    }

    .about-image,
    .about-image img{
        min-height:350px;
    }

    .about-highlight{
        font-size:23px !important;
    }

    .team-photo{
        height:410px;
    }

    .team-info{
        padding:28px 24px 32px;
    }

    .team-info h3{
        font-size:42px;
    }

    .cta-content h2{
        font-size:42px;
    }

    .cta-content > p:not(.section-label){
        font-size:15px;
    }

    .footer-logo img{
        height:64px;
    }
}

/* ==================================================
   ŽIVÉ HERO – JEMNÉ PREMIUM EFEKTY
================================================== */

/* Pomalé „dýchání“ fotografie */

.hero-image{
    animation:heroBreathing 20s ease-in-out infinite alternate;
    will-change:transform;
}

@keyframes heroBreathing{
    0%{
        transform:scale(1.06);
    }

    100%{
        transform:scale(1.12);
    }
}

/* Jemné pulzování zlatého světla */

.hero-overlay{
    animation:heroLight 7s ease-in-out infinite alternate;
}

@keyframes heroLight{
    0%{
        opacity:.92;
    }

    100%{
        opacity:1;
    }
}

/* Pomalý pohyb velkého AJM v pozadí */

.hero-watermark{
    animation:watermarkFloat 8s ease-in-out infinite alternate;
    will-change:transform, opacity;
}

@keyframes watermarkFloat{
    0%{
        transform:translateX(-50%) translateY(0);
        opacity:.75;
    }

    100%{
        transform:translateX(-50%) translateY(12px);
        opacity:1;
    }
}

/* Zlatý odlesk přes tlačítko */

.btn{
    position:relative;
    overflow:hidden;
    isolation:isolate;
}

.btn::before{
    content:"";
    position:absolute;
    top:-50%;
    left:-80%;
    width:45%;
    height:200%;
    z-index:-1;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.34),
        transparent
    );

    transform:rotate(20deg);
    transition:left .65s ease;
}

.btn:hover::before{
    left:135%;
}

/* Jemnější přechod při hoveru */

.btn-primary:hover{
    box-shadow:
        0 20px 50px rgba(0,0,0,.42),
        0 0 28px rgba(208,168,95,.20);
}

.btn-secondary:hover{
    background:rgba(255,255,255,.12);
    border-color:#d0a85f;
}

/* Respektování nastavení omezených animací */

@media(prefers-reduced-motion:reduce){
    .hero-image,
    .hero-overlay,
    .hero-watermark,
    .hero-scroll{
        animation:none;
    }

    .btn::before{
        display:none;
    }
}

/* ==================================================
   ÚVODNÍ LOADER
================================================== */

.page-loader{
    position:fixed;
    inset:0;
    z-index:99999;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#070604;
    opacity:1;
    visibility:visible;
    transition:
        opacity .7s ease,
        visibility .7s ease;
}

.page-loader.is-hidden{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}

.loader-content{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.loader-content img{
    width:190px;
    height:auto;
    opacity:0;
    transform:translateY(16px);
    animation:loaderLogo .8s ease forwards;
}

.loader-line{
    width:210px;
    height:1px;
    margin-top:28px;
    overflow:hidden;
    background:rgba(255,255,255,.12);
}

.loader-line span{
    display:block;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        #d0a85f,
        transparent
    );
    transform:translateX(-100%);
    animation:loaderLine 1.25s ease forwards;
}

@keyframes loaderLogo{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes loaderLine{
    to{
        transform:translateX(100%);
    }
}

@media(prefers-reduced-motion:reduce){
    .loader-content img,
    .loader-line span{
        animation:none;
        opacity:1;
        transform:none;
    }
}


/* ==================================================
   KONTAKT – FINÁLNÍ ÚPRAVA
   Vlož úplně na konec style.css
================================================== */

.contact-intro{
    margin-bottom:34px;
}

.contact-cards{
    display:grid;
    grid-template-columns:repeat(2, minmax(280px,1fr));
    gap:18px;
}

.contact-card{
    min-height:112px;
    padding:20px;
    display:flex;
    align-items:center;
    gap:16px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:8px;
    background:rgba(255,255,255,.025);
    color:#fff;
    text-decoration:none;
    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.contact-card:hover{
    transform:translateY(-4px);
    border-color:rgba(208,168,95,.45);
    background:rgba(208,168,95,.07);
    box-shadow:0 18px 42px rgba(0,0,0,.22);
}

.contact-card-static{
    cursor:default;
}

.contact-card-static:hover{
    transform:none;
}

.contact-card-icon{
    width:48px;
    height:48px;
    flex:0 0 48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(208,168,95,.35);
    border-radius:50%;
    color:#d0a85f;
}

.contact-card-icon svg,
.contact-social-links svg{
    width:22px;
    height:22px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.7;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.contact-card small{
    display:block;
    margin-bottom:6px;
    color:rgba(255,255,255,.48);
    font-size:10px;
    font-weight:700;
    letter-spacing:1.7px;
    text-transform:uppercase;
}

.contact-card strong{
    display:block;
    font-size:15px;
    line-height:1.45;
    white-space:nowrap;
    letter-spacing:.2px;
}

.contact-socials{
    margin-top:34px;
}

.contact-socials > p{
    margin-bottom:15px;
    color:#d0a85f;
    font-size:11px;
    font-weight:700;
    letter-spacing:2.3px;
    text-transform:uppercase;
}

.contact-social-links{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.contact-social-links a{
    min-width:150px;
    padding:14px 18px;
    display:flex;
    align-items:center;
    gap:11px;
    border:1px solid rgba(255,255,255,.10);
    border-radius:999px;
    background:rgba(255,255,255,.025);
    color:#fff;
    text-decoration:none;
    transition:
        transform .3s ease,
        color .3s ease,
        border-color .3s ease,
        background .3s ease;
}

.contact-social-links a:hover{
    transform:translateY(-3px);
    color:#d0a85f;
    border-color:rgba(208,168,95,.48);
    background:rgba(208,168,95,.06);
}

.contact-note{
    display:grid;
    gap:8px;
}

.contact-note strong{
    color:#fff;
    font-family:'Cormorant Garamond',serif;
    font-size:23px;
    font-weight:500;
}

.contact-note span{
    color:rgba(255,255,255,.66);
    font-size:13px;
    line-height:1.75;
}

.contact-form-note{
    color:rgba(255,255,255,.42);
    font-size:11px;
    line-height:1.65;
}

.contact-map{
    margin-top:58px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    border-radius:10px;
    box-shadow:0 30px 90px rgba(0,0,0,.35);
}

.contact-map iframe{
    width:100%;
    height:460px;
    display:block;
    border:0;
    filter:saturate(.95) contrast(1.02);
}

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

    .contact-social-links{
        flex-direction:column;
    }

    .contact-social-links a{
        width:100%;
    }

    .contact-map iframe{
        height:360px;
    }
}

/* ==================================================
   ZPRÁVA PO ODESLÁNÍ FORMULÁŘE
================================================== */

.form-message{

    max-height:0;

    overflow:hidden;

    opacity:0;

    margin-top:18px;

    padding:0 22px;

    border-radius:8px;

    transition:.45s;

    font-size:14px;

    line-height:1.7;

}

.form-message.show{

    max-height:180px;

    opacity:1;

    padding:18px 22px;

}

.form-message.success{

    background:rgba(58,181,74,.14);

    border:1px solid rgba(58,181,74,.35);

    color:#b8ffbe;

}

.form-message.error{

    background:rgba(215,70,70,.14);

    border:1px solid rgba(215,70,70,.35);

    color:#ffc1c1;

}

/* ==================================================
   REFERENCE
================================================== */

.testimonials-section{
    position:relative;
    padding:140px 30px 150px;
    overflow:hidden;
    background:
        radial-gradient(
            circle at 86% 18%,
            rgba(208,168,95,.09),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #090806,
            #11100d,
            #090806
        );
}

.testimonials-section::before{
    content:"REFERENCE";
    position:absolute;
    top:34px;
    left:50%;
    transform:translateX(-50%);
    font-family:'Cormorant Garamond',serif;
    font-size:13vw;
    font-weight:600;
    letter-spacing:18px;
    color:rgba(255,255,255,.022);
    white-space:nowrap;
    pointer-events:none;
    user-select:none;
}

.testimonials-heading{
    max-width:820px;
    margin:0 auto 72px;
    text-align:center;
}

.testimonials-heading h2{
    margin-bottom:22px;
    font-family:'Cormorant Garamond',serif;
    font-size:66px;
    line-height:1.05;
    font-weight:500;
}

.testimonials-heading > p:last-child{
    color:rgba(255,255,255,.66);
    font-size:16px;
    line-height:1.9;
}

.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.testimonial-card{
    position:relative;
    min-height:320px;
    padding:38px 32px 34px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    border:1px solid rgba(255,255,255,.08);
    border-radius:8px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.014)
        );
    box-shadow:0 24px 68px rgba(0,0,0,.25);
    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

.testimonial-card:hover{
    transform:translateY(-9px);
    border-color:rgba(208,168,95,.38);
    background:
        linear-gradient(
            145deg,
            rgba(208,168,95,.10),
            rgba(255,255,255,.02)
        );
    box-shadow:0 32px 85px rgba(0,0,0,.38);
}

.testimonial-stars{
    margin-bottom:24px;
    color:#d0a85f;
    font-size:17px;
    letter-spacing:5px;
}

.testimonial-card blockquote{
    margin-bottom:32px;
    color:rgba(255,255,255,.78);
    font-family:'Cormorant Garamond',serif;
    font-size:24px;
    line-height:1.45;
}

.testimonial-author{
    display:grid;
    gap:6px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.08);
}

.testimonial-author strong{
    color:#fff;
    font-size:14px;
}

.testimonial-author span{
    color:rgba(255,255,255,.48);
    font-size:11px;
    letter-spacing:1px;
    text-transform:uppercase;
}

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

@media(max-width:650px){
    .testimonials-section{
        padding:90px 20px 105px;
    }

    .testimonials-heading{
        margin-bottom:48px;
    }

    .testimonials-heading h2{
        font-size:44px;
    }

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

    .testimonial-card{
        min-height:auto;
    }

    .testimonial-card blockquote{
        font-size:22px;
    }
}

/* ==================================================
   FINÁLNÍ HERO + MOBILNÍ NAVIGACE
   Autoritativní blok – nepřidávat další hotfixy pod něj
================================================== */

.hero{
    position:relative;
    min-height:100svh;
    display:grid;
    place-items:center;
    overflow:hidden;
    text-align:center;
}

.hero-content{
    position:relative;
    z-index:5;
    width:min(1180px, calc(100% - 48px));
    margin:0 auto;
    padding:125px 0 70px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero-content h1.hero-title{
    width:100%;
    margin:0 auto;
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(56px,5.4vw,86px);
    line-height:.98;
    font-weight:500;
    letter-spacing:3px;
    text-transform:uppercase;
    text-align:center;
    text-shadow:0 22px 55px rgba(0,0,0,.7);
}

.hero-content h1.hero-title span{
    display:block;
    width:100%;
    margin:0 auto;
    text-align:center;
}

.hero-label,
.hero-subtitle{
    width:100%;
    text-align:center;
}

.menu-toggle,
.menu-backdrop{
    display:none;
}

@media(max-width:900px){
    .header{
        height:112px;
        padding:0 24px;
    }

    .logo img{
        height:76px;
    }

    .menu-toggle{
        position:relative;
        z-index:1002;
        width:52px;
        height:52px;
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:6px;
        border:1px solid rgba(208,168,95,.42);
        border-radius:50%;
        background:rgba(16,13,9,.76);
        cursor:pointer;
    }

    .menu-toggle span{
        width:23px;
        height:2px;
        display:block;
        border-radius:999px;
        background:#d0a85f;
        transition:transform .3s ease,opacity .3s ease;
    }

    .menu-toggle.is-open span:nth-child(1){
        transform:translateY(8px) rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2){
        opacity:0;
    }

    .menu-toggle.is-open span:nth-child(3){
        transform:translateY(-8px) rotate(-45deg);
    }

    .nav{
        position:fixed;
        inset:0 0 0 auto;
        z-index:1001;
        width:min(86vw,390px);
        min-height:100dvh;
        padding:140px 34px 44px;
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        justify-content:flex-start;
        gap:0;
        background:
            radial-gradient(circle at 88% 8%,rgba(208,168,95,.17),transparent 34%),
            linear-gradient(180deg,#1a1610 0%,#0c0a07 100%);
        border-left:1px solid rgba(208,168,95,.24);
        box-shadow:-28px 0 80px rgba(0,0,0,.46);
        transform:translateX(105%);
        visibility:hidden;
        transition:transform .38s ease,visibility .38s ease;
    }

    .nav.is-open{
        transform:translateX(0);
        visibility:visible;
    }

    .nav a{
        width:100%;
        padding:17px 4px;
        border-bottom:1px solid rgba(255,255,255,.12);
        color:rgba(255,255,255,.96);
        font-family:'Cormorant Garamond',serif;
        font-size:29px;
        font-weight:500;
        letter-spacing:.4px;
        text-transform:none;
        text-shadow:none;
        opacity:1;
    }

    .nav a.active,
    .nav a:hover{
        color:#d0a85f;
    }

    .menu-backdrop{
        position:fixed;
        inset:0;
        z-index:1000;
        display:block;
        background:rgba(0,0,0,.28);
        opacity:0;
        visibility:hidden;
        pointer-events:none;
        transition:opacity .3s ease,visibility .3s ease;
    }

    .menu-backdrop.is-open{
        opacity:1;
        visibility:visible;
        pointer-events:auto;
    }

    body.menu-open{
        overflow:hidden;
    }

    .hero-content{
        width:min(900px, calc(100% - 40px));
        padding:145px 0 70px;
    }

    .hero-content h1.hero-title{
        font-size:clamp(42px,7vw,68px);
        letter-spacing:1px;
    }
}

@media(max-width:700px){
    .hero-content{
        width:calc(100% - 28px);
        padding:145px 0 64px;
    }

    .hero-label{
        margin:0 auto 26px;
        font-size:12px;
        letter-spacing:7px;
    }

    .hero-content h1.hero-title{
        width:100%;
        max-width:100%;
        margin:0 auto;
        font-size:clamp(27px,7.7vw,33px);
        line-height:1.06;
        letter-spacing:0;
    }

    .hero-content h1.hero-title span{
        width:100%;
        margin:0 auto;
        text-align:center;
        white-space:normal;
    }

    .hero-content h1.hero-title span + span{
        margin-top:7px;
    }

    .hero-line{
        margin:30px auto 24px;
    }

    .hero-subtitle{
        max-width:350px;
        margin:0 auto 36px;
        padding:0 4px;
        font-size:11px;
        line-height:1.75;
        letter-spacing:1px;
    }

    .hero-buttons{
        width:100%;
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:18px;
    }

    .hero-buttons .btn{
        width:min(100%,300px);
        min-width:0;
        margin:0 auto;
        padding:21px 22px;
    }

    .hero-bottom{
        width:100%;
        left:50%;
        transform:translateX(-50%);
        text-align:center;
        white-space:nowrap;
    }
}

@media(max-width:390px){
    .hero-content{
        width:calc(100% - 22px);
    }

    .hero-content h1.hero-title{
        font-size:27px;
    }
}

/* ==================================================
   OPRAVA KLIKÁNÍ V HAMBURGER MENU
================================================== */

@media (max-width:900px){

    .header{
        z-index:1100;
    }

    .nav{
        z-index:1102;
        pointer-events:auto;
    }

    .menu-toggle{
        z-index:1103;
    }

    .menu-backdrop{
        z-index:1099;
    }

    .nav a{
        position:relative;
        z-index:1;
        pointer-events:auto;
    }
}
