
/* Galerie organizată pe servicii */
.service-gallery{
    padding:92px 0 110px;
    background:linear-gradient(180deg,#fff 0%,#fcfaf5 100%);
}
.service-gallery-heading{
    margin-bottom:38px;
}
.gallery-service-tabs{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:14px;
    margin-bottom:42px;
}
.gallery-service-tab{
    display:flex;
    align-items:center;
    gap:14px;
    min-height:92px;
    padding:18px 20px;
    border:1px solid rgba(163,126,64,.16);
    border-radius:22px;
    background:#fff;
    color:#30281d;
    text-align:left;
    cursor:pointer;
    box-shadow:0 12px 30px rgba(62,45,20,.045);
    transition:.25s ease;
}
.gallery-service-tab:hover{
    transform:translateY(-3px);
    border-color:rgba(181,139,70,.38);
    box-shadow:0 16px 34px rgba(122,89,35,.08);
}
.gallery-service-tab.active{
    border-color:rgba(181,139,70,.50);
    background:linear-gradient(145deg,#fffaf1,#f3e2c0);
    box-shadow:0 16px 38px rgba(163,122,51,.11);
}
.gallery-service-icon{
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    flex:0 0 44px;
    border-radius:50%;
    background:#f7edd9;
    color:#a97c31;
    font-size:17px;
}
.gallery-service-tab.active .gallery-service-icon{
    color:#fff;
    background:linear-gradient(135deg,#d4b56d,#a9782c);
}
.gallery-service-tab b,
.gallery-service-tab small{
    display:block;
}
.gallery-service-tab b{
    font:600 20px/1.05 "Cormorant Garamond",serif;
}
.gallery-service-tab small{
    margin-top:5px;
    color:#887a67;
    font:600 9px/1.4 "Manrope",sans-serif;
    letter-spacing:.04em;
}
.gallery-service-panel{
    display:none;
}
.gallery-service-panel.active{
    display:block;
    animation:galleryPanelIn .32s ease;
}
@keyframes galleryPanelIn{
    from{opacity:0;transform:translateY(8px)}
    to{opacity:1;transform:none}
}
.gallery-panel-head{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(280px,480px);
    gap:30px;
    align-items:end;
    margin-bottom:28px;
}
.gallery-panel-head span{
    color:#aa7e33;
    font:800 10px/1 "Manrope",sans-serif;
    letter-spacing:2.2px;
}
.gallery-panel-head h2{
    margin:8px 0 0;
    font:600 clamp(38px,4vw,54px)/.98 "Cormorant Garamond",serif;
}
.gallery-panel-head p{
    margin:0;
    color:#7e7160;
    font-size:13px;
    line-height:1.7;
}
.portrait-gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
}
.landscape-gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}
.press-gallery-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,420px));
    justify-content:center;
    gap:20px;
}
.service-gallery-item{
    position:relative;
    overflow:hidden;
    margin:0;
    border-radius:22px;
    background:#f6efe3;
    border:1px solid rgba(168,128,58,.14);
    box-shadow:0 12px 30px rgba(44,33,16,.06);
    cursor:zoom-in;
}
.portrait-gallery-grid .service-gallery-item,
.press-gallery-grid .service-gallery-item{
    aspect-ratio:2/3;
}
.landscape-gallery-grid .service-gallery-item{
    aspect-ratio:3/2;
}
.service-gallery-item img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:transform .55s ease;
}
.service-gallery-item:hover img{
    transform:scale(1.035);
}
.video-gallery-placeholder{
    min-height:360px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:48px 24px;
    text-align:center;
    border:1px dashed rgba(166,126,57,.30);
    border-radius:28px;
    background:
      radial-gradient(circle at 50% 0%,rgba(224,202,154,.25),transparent 42%),
      linear-gradient(145deg,#fffdf8,#f7efe1);
}
.video-placeholder-icon{
    width:72px;
    height:72px;
    display:grid;
    place-items:center;
    margin-bottom:18px;
    border-radius:50%;
    color:#fff;
    background:linear-gradient(135deg,#d5b76e,#a7762c);
    box-shadow:0 14px 30px rgba(167,118,44,.22);
    font-size:22px;
}
.video-gallery-placeholder h3{
    margin:9px 0 8px;
    font:600 34px/1 "Cormorant Garamond",serif;
}
.video-gallery-placeholder p{
    max-width:600px;
    margin:0;
    color:#80725f;
    font-size:13px;
    line-height:1.7;
}
.service-gallery-lightbox{
    position:fixed;
    inset:0;
    z-index:9999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:28px;
    background:rgba(15,12,8,.86);
    backdrop-filter:blur(8px);
}
.service-gallery-lightbox.active{
    display:flex;
}
.service-gallery-lightbox img{
    max-width:min(92vw,1100px);
    max-height:88vh;
    object-fit:contain;
    border-radius:16px;
    box-shadow:0 24px 70px rgba(0,0,0,.34);
}
.service-gallery-lightbox button{
    position:absolute;
    top:22px;
    right:24px;
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    border:1px solid rgba(255,255,255,.18);
    border-radius:50%;
    background:rgba(255,255,255,.10);
    color:#fff;
    font-size:20px;
    cursor:pointer;
}
@media(max-width:980px){
    .gallery-service-tabs{grid-template-columns:repeat(2,1fr)}
    .portrait-gallery-grid{grid-template-columns:repeat(3,1fr)}
    .landscape-gallery-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:680px){
    .service-gallery{padding:65px 0 80px}
    .gallery-service-tabs{
        display:flex;
        overflow-x:auto;
        gap:10px;
        padding-bottom:5px;
        margin-right:-18px;
        padding-right:18px;
    }
    .gallery-service-tab{
        min-width:205px;
        min-height:78px;
        padding:14px 15px;
        flex:0 0 auto;
    }
    .gallery-panel-head{grid-template-columns:1fr;gap:12px}
    .gallery-panel-head h2{font-size:38px}
    .portrait-gallery-grid{grid-template-columns:repeat(2,1fr);gap:12px}
    .landscape-gallery-grid{grid-template-columns:1fr;gap:13px}
    .press-gallery-grid{grid-template-columns:repeat(2,1fr);gap:12px}
    .service-gallery-item{border-radius:16px}
    .video-gallery-placeholder{min-height:300px;padding:35px 20px}
}


/* Video 360 - clipuri reale */
.video-gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}
.video-gallery-card{
    overflow:hidden;
    border:1px solid rgba(168,128,58,.16);
    border-radius:22px;
    background:linear-gradient(180deg,#fff,#faf5ea);
    box-shadow:0 14px 34px rgba(44,33,16,.07);
}
.video-gallery-card video{
    display:block;
    width:100%;
    aspect-ratio:9/16;
    max-height:620px;
    object-fit:cover;
    background:#16130f;
}
.video-gallery-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:13px 15px 15px;
}
.video-gallery-meta span{
    color:#aa7e33;
    font:800 8px/1 "Manrope",sans-serif;
    letter-spacing:1.6px;
}
.video-gallery-meta b{
    color:#473a29;
    font:700 10px/1 "Manrope",sans-serif;
}
@media(max-width:980px){
    .video-gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:620px){
    .video-gallery-grid{grid-template-columns:1fr 1fr;gap:12px}
    .video-gallery-card{border-radius:16px}
    .video-gallery-meta{padding:10px 11px 12px}
}
