/* ==========================================================================
   STELOR — base styles (verbatim from design prototype)
   ========================================================================== */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:'Montserrat',sans-serif;color:#E6EAF0;background:#12161C;-webkit-font-smoothing:antialiased;line-height:1.6}
h1,h2,h3,h4{font-family:'Quicksand',sans-serif;margin:0;font-weight:600;line-height:1.08;letter-spacing:-.01em}
p{margin:0}
a{color:#C7CDD6;text-decoration:none;transition:color .2s}
a:hover{color:#fff}
img{display:block;max-width:100%}
::selection{background:#1E2530;color:#fff}
@keyframes fadeUp{from{opacity:0;transform:translateY(28px)}to{opacity:1;transform:none}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
.rv{opacity:1}
.only-desktop{display:flex}
.only-mobile{display:none}
@media(max-width:980px){
  .only-desktop{display:none!important}
  .only-mobile{display:flex!important}
}

/* Focus visibility */
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible{
  outline:2px solid #fff;outline-offset:2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .mobile-menu{animation:none!important}
}

/* No horizontal scroll */
html,body{max-width:100%;overflow-x:hidden}

/* ==========================================================================
   Shared section primitives
   ========================================================================== */
.section-eyebrow{color:#8A97A8;font-size:12.5px;letter-spacing:.3em;text-transform:uppercase;font-weight:500;margin-bottom:18px}
.section-eyebrow--sm{margin-bottom:16px}
.section-eyebrow--lg{margin-bottom:22px}
.section-title{font-size:clamp(30px,4.2vw,54px);color:#F2F5F8}

.btn{cursor:pointer;border-radius:2px;font-weight:600;transition:background .2s}
.btn-white{background:#fff;color:#0E1218}
.btn-white:hover{background:#E7E9ED;color:#0E1218}
.btn-outline{background:rgba(255,255,255,.1);color:#fff;border:1px solid rgba(255,255,255,.4)}
.btn-outline:hover{background:rgba(255,255,255,.2);color:#fff}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{position:fixed;top:0;left:0;right:0;z-index:200;height:70px;background:rgba(13,17,23,.92);backdrop-filter:blur(12px);border-bottom:1px solid rgba(255,255,255,.08)}
.site-header__row{max-width:1320px;margin:0 auto;height:100%;padding:0 clamp(18px,4vw,56px);display:flex;align-items:center;justify-content:space-between;gap:20px}
.site-header__brand{display:flex;align-items:center;gap:12px;cursor:pointer}
.site-header__brand:hover{color:inherit}
.site-header__logo-img{height:36px;width:auto}
.site-header__logo-text{font-family:'Quicksand',sans-serif;font-weight:600;font-size:22px;letter-spacing:.32em;color:#fff;padding-left:2px}

.site-nav{align-items:center;gap:6px}
.site-nav__link{color:rgba(255,255,255,.82);font-size:13.5px;font-weight:500;padding:10px 14px;cursor:pointer}
.site-nav__link:hover{color:rgba(255,255,255,.82)}

.site-nav__dropdown{position:relative}
.site-nav__dropdown-trigger{color:rgba(255,255,255,.82);font-size:13.5px;font-weight:500;padding:10px 14px;cursor:pointer;display:inline-flex;align-items:center;gap:6px}
.site-nav__dropdown-arrow{font-size:9px;opacity:.7}
.site-nav__dropdown::after{content:'';position:absolute;left:0;right:0;top:100%;height:14px}
.site-nav__dropdown-panel{position:absolute;top:100%;left:0;min-width:250px;background:#1C222B;border:1px solid rgba(255,255,255,.1);box-shadow:0 24px 60px rgba(10,14,20,.22);padding:8px;border-radius:2px;display:none}
.site-nav__dropdown:hover .site-nav__dropdown-panel,
.site-nav__dropdown:focus-within .site-nav__dropdown-panel{display:block}
.site-nav__dropdown-link{display:block;padding:11px 16px;font-size:14px;color:#C7CDD6;cursor:pointer;font-weight:500}
.site-nav__dropdown-link:hover{background:rgba(255,255,255,.07);color:#C7CDD6}

.site-nav__cta{margin-left:10px;background:#fff;color:#0E1218;font-size:13px;font-weight:600;letter-spacing:.03em;padding:12px 22px;cursor:pointer;border-radius:2px}
.site-nav__cta:hover{background:#E7E9ED;color:#0E1218}

.menu-toggle{display:none;background:none;border:none;flex-direction:column;gap:5px;cursor:pointer;padding:8px}
.menu-toggle__bar{width:24px;height:2px;background:#fff;display:block}

/* ==========================================================================
   Mobile menu overlay
   ========================================================================== */
.mobile-menu{position:fixed;inset:0;z-index:190;background:#0E1218;padding:96px clamp(24px,7vw,56px) 40px;overflow-y:auto;animation:fadeIn .25s both;display:none}
.mobile-menu.is-open{display:block}
body.menu-open{overflow:hidden}
.mobile-menu__inner{display:flex;flex-direction:column;gap:2px}
.mobile-menu__home{color:#fff;font-family:'Quicksand',sans-serif;font-size:26px;font-weight:500;padding:14px 0;cursor:pointer;border-bottom:1px solid rgba(255,255,255,.08)}
.mobile-menu__section-label{color:#6B7688;font-size:12px;letter-spacing:.18em;text-transform:uppercase;padding:22px 0 6px}
.mobile-menu__link{color:rgba(255,255,255,.85);font-size:18px;padding:9px 0;cursor:pointer}
.mobile-menu__realizace{color:#fff;font-family:'Quicksand',sans-serif;font-size:22px;font-weight:500;padding:20px 0 14px;cursor:pointer;border-top:1px solid rgba(255,255,255,.08);margin-top:16px}
.mobile-menu__cta{margin-top:16px;background:#fff;color:#0E1218;text-align:center;font-weight:600;padding:16px;cursor:pointer;border-radius:2px;display:block}
.mobile-menu__cta:hover{background:#E7E9ED;color:#0E1218}

/* ==========================================================================
   Page main offset (all pages except home)
   ========================================================================== */
.page-main{padding-top:70px}

/* ==========================================================================
   HOME — Hero
   ========================================================================== */
.hero{position:relative;min-height:100vh;display:flex;align-items:flex-end;background-size:cover;background-position:center 38%;
  background-image:linear-gradient(180deg,rgba(9,12,17,.72) 0%,rgba(9,12,17,.25) 34%,rgba(9,12,17,.15) 52%,rgba(9,12,17,.86) 100%),url('../assets/hero-house-clean.jpg');}
.hero__container{max-width:1320px;margin:0 auto;width:100%;padding:0 clamp(18px,4vw,56px) clamp(56px,8vh,110px)}
.hero__content{max-width:760px}
.hero__eyebrow{color:#B9C2CE;font-size:12.5px;letter-spacing:.34em;text-transform:uppercase;margin-bottom:26px;font-weight:500}
.hero__title{color:#fff;font-size:clamp(44px,7.5vw,104px);font-weight:600;letter-spacing:-.02em;margin-bottom:26px}
.hero__desc{color:rgba(255,255,255,.82);font-size:clamp(16px,1.5vw,19px);max-width:560px;margin-bottom:38px;font-weight:300}
.hero__actions{display:flex;flex-wrap:wrap;gap:14px}
.hero__btn{display:inline-flex;align-items:center;gap:10px;white-space:nowrap;font-size:15px;padding:17px 30px}
.hero__badge{position:absolute;bottom:26px;left:50%;transform:translateX(-50%);color:rgba(255,255,255,.5);font-size:11px;letter-spacing:.24em;text-transform:uppercase;white-space:nowrap}
@media(max-width:640px){
  .hero__badge{font-size:10px;letter-spacing:.18em}
  .hero{padding-top:86px}
}

/* ==========================================================================
   HOME — Segmenty
   ========================================================================== */
.segments{max-width:1320px;margin:0 auto;padding:clamp(64px,9vw,120px) clamp(18px,4vw,56px)}
.segments__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:22px}
.segment-card{position:relative;min-height:440px;display:flex;flex-direction:column;justify-content:flex-end;padding:40px;cursor:pointer;overflow:hidden;background-size:cover;background-position:center}
.segment-card--dom{background-image:linear-gradient(180deg,rgba(9,12,17,.1),rgba(9,12,17,.85)),url('../assets/hero-house-clean.jpg');}
.segment-card--indu{background-image:linear-gradient(180deg,rgba(9,12,17,.1),rgba(9,12,17,.85)),url('../assets/docks-wide.jpg');}
.segment-card__eyebrow{color:#B9C2CE;font-size:12px;letter-spacing:.28em;text-transform:uppercase;margin-bottom:12px}
.segment-card__title{color:#fff;font-size:clamp(28px,3vw,40px);margin-bottom:14px}
.segment-card__desc{color:rgba(255,255,255,.78);font-size:15px;max-width:400px;font-weight:300;margin-bottom:18px}
.segment-card__link{color:#fff;font-weight:600;font-size:14px}

/* ==========================================================================
   HOME — Produkty editorial
   ========================================================================== */
.products-editorial{background:#1A1F27;padding:clamp(64px,9vw,120px) 0}
.products-editorial__container{max-width:1320px;margin:0 auto;padding:0 clamp(18px,4vw,56px)}
.products-editorial__header{max-width:640px;margin-bottom:clamp(48px,6vw,80px)}
.product-row-list{display:flex;flex-direction:column;gap:clamp(28px,4vw,56px)}
.product-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:clamp(20px,3vw,48px);align-items:center;cursor:pointer;background:#1C222B;border:1px solid rgba(255,255,255,.08);overflow:hidden}
.product-row--reverse > :first-child{order:1}
.product-row__image{min-height:300px;background-size:cover;background-position:center}
.product-row__content{padding:clamp(28px,4vw,56px)}
.product-row__meta{display:flex;align-items:center;gap:14px;margin-bottom:16px}
.product-row__num{font-family:'Quicksand',sans-serif;font-size:15px;color:#8A97A8;font-weight:600}
.product-row__seg{color:#8A97A8;font-size:11.5px;letter-spacing:.2em;text-transform:uppercase}
.product-row__title{font-size:clamp(24px,2.8vw,36px);margin-bottom:14px;color:#F2F5F8}
.product-row__tagline{color:#A7B1BE;font-size:15.5px;font-weight:300;margin-bottom:22px}
.product-row__link{color:#fff;font-weight:600;font-size:14px;border-bottom:2px solid rgba(255,255,255,.45);padding-bottom:3px;display:inline-block}

/* ==========================================================================
   HOME — Sluzby
   ========================================================================== */
.services{max-width:1320px;margin:0 auto;padding:clamp(64px,9vw,120px) clamp(18px,4vw,56px)}
.services__header{max-width:640px;margin-bottom:clamp(40px,5vw,64px)}
.services__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.1)}
.service-card{background:#1C222B;padding:clamp(30px,3vw,44px)}
.service-card__num{width:52px;height:52px;border:1.5px solid rgba(255,255,255,.3);border-radius:50%;display:flex;align-items:center;justify-content:center;margin-bottom:26px;color:#E7EDF4;font-family:'Quicksand',sans-serif;font-weight:600;font-size:18px}
.service-card__title{font-size:21px;margin-bottom:14px;color:#F2F5F8}
.service-card__desc{color:#A7B1BE;font-size:14.5px;font-weight:300}

/* ==========================================================================
   HOME — Realizace
   ========================================================================== */
.realizace{padding:clamp(64px,9vw,120px) 0;background:#0E1218}
.realizace__container{max-width:1320px;margin:0 auto;padding:0 clamp(18px,4vw,56px)}
.realizace__header{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-end;gap:24px;margin-bottom:clamp(36px,4vw,56px)}
.realizace__title{color:#fff;max-width:560px}
.realizace__link{color:#fff;white-space:nowrap;border:1px solid rgba(255,255,255,.4);padding:14px 26px;font-weight:600;font-size:14px;cursor:pointer;border-radius:2px}
.realizace__link:hover{background:rgba(255,255,255,.12);color:#fff}
.realizace__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:14px}
.realizace__item{aspect-ratio:4/3;background-size:cover;background-position:center}

/* ==========================================================================
   HOME — CTA
   ========================================================================== */
.cta-section{background:#1A1F27;padding:clamp(64px,10vw,130px) clamp(18px,4vw,56px)}
.cta-section__inner{max-width:820px;margin:0 auto;text-align:center}
.cta-section__title{font-size:clamp(30px,4.6vw,58px);color:#F2F5F8;margin-bottom:24px}
.cta-section__desc{color:#A7B1BE;font-size:17px;font-weight:300;max-width:540px;margin:0 auto 36px}
.cta-section__actions{display:flex;flex-wrap:wrap;gap:14px;justify-content:center}
.cta-section__btn-primary{padding:17px 34px}
.cta-section__btn-primary:hover{background:#E7E9ED;color:#0E1218}
.cta-section__btn-tel{border:1px solid rgba(255,255,255,.3);color:#F2F5F8;font-weight:600;padding:17px 34px;border-radius:2px}
.cta-section__btn-tel:hover{background:rgba(255,255,255,.1);color:#F2F5F8}

/* ==========================================================================
   PRODUCT PAGE
   ========================================================================== */
.product-hero{max-width:1100px;margin:0 auto;padding:clamp(48px,7vw,96px) clamp(18px,4vw,56px) clamp(32px,4vw,56px)}
.breadcrumb{display:flex;align-items:center;gap:10px;color:#8A97A8;font-size:12px;letter-spacing:.16em;text-transform:uppercase;margin-bottom:26px}
.breadcrumb__home{color:#8A97A8;cursor:pointer}
.product-hero__title{font-size:clamp(38px,6vw,80px);color:#F2F5F8;margin-bottom:26px}
.product-hero__tagline{font-size:clamp(18px,2vw,24px);color:#C7CDD6;font-weight:400;max-width:680px;margin-bottom:40px}

.product-intro{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:clamp(28px,4vw,56px);align-items:start}
.product-intro__para{color:#A7B1BE;font-size:16px;font-weight:300;margin-bottom:18px}
.product-intro__cta{display:inline-block;margin-top:14px;padding:16px 32px}
.product-intro__cta:hover{background:#E7E9ED;color:#0E1218}

.why-box{border:1px solid rgba(255,255,255,.1);padding:34px 32px;background:#1A1F27}
.why-box__label{color:#8A97A8;font-size:12px;letter-spacing:.2em;text-transform:uppercase;margin-bottom:22px}
.why-box__list{display:flex;flex-direction:column;gap:16px}
.why-box__item{display:flex;gap:14px;align-items:flex-start}
.why-box__check{flex:none;width:22px;height:22px;border-radius:50%;background:#3A4759;color:#fff;display:flex;align-items:center;justify-content:center;font-size:12px;margin-top:1px}
.why-box__text{color:#F2F5F8;font-size:15px}

.product-band-wrap{max-width:1320px;margin:0 auto;padding:0 clamp(18px,4vw,56px)}
.product-band{aspect-ratio:21/9;background-size:cover;background-position:center}

.product-items{max-width:1320px;margin:0 auto;padding:clamp(48px,7vw,96px) clamp(18px,4vw,56px)}
.product-items__header{margin-bottom:clamp(32px,4vw,48px)}
.product-items__title{font-size:clamp(28px,3.6vw,44px);color:#F2F5F8}
.product-items__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:20px}
.product-item-card{border:1px solid rgba(255,255,255,.1);padding:32px 30px;background:#1C222B;display:flex;flex-direction:column;gap:14px;transition:border-color .2s}
.product-item-card:hover{border-color:rgba(255,255,255,.4)}
.product-item-card__num{font-family:'Quicksand',sans-serif;font-size:14px;color:#8A97A8;font-weight:600}
.product-item-card__title{font-size:22px;color:#F2F5F8}
.product-item-card__desc{color:#A7B1BE;font-size:14.5px;font-weight:300}

/* ==========================================================================
   REALIZACE PAGE
   ========================================================================== */
.realizace-lead{max-width:760px;display:flex;flex-direction:column;gap:18px;margin-top:8px}
.realizace-lead__para{color:#A7B1BE;font-size:16px;font-weight:300}
.realizace-lead__closing{color:#F2F5F8;font-size:18px;font-weight:600;font-family:'Quicksand',sans-serif;margin-top:4px}

.gallery-section{max-width:1320px;margin:0 auto;padding:clamp(24px,4vw,48px) clamp(18px,4vw,56px) clamp(64px,9vw,120px)}
.gallery-section__header{margin-bottom:clamp(32px,4vw,48px)}
.gallery-section__title{font-size:clamp(28px,3.6vw,44px);color:#F2F5F8}
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:14px}
.gallery-item{position:relative;display:block;width:100%;aspect-ratio:4/3;overflow:hidden;padding:0;margin:0;border:none;border-radius:2px;background:#1C222B;cursor:pointer}
.gallery-item img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s ease,filter .3s ease}
.gallery-item:hover img,.gallery-item:focus-visible img{transform:scale(1.05);filter:brightness(1.06)}
.gallery-item:focus-visible{outline:2px solid #fff;outline-offset:2px}
@media (prefers-reduced-motion: reduce){
  .gallery-item img{transition:none}
  .gallery-item:hover img,.gallery-item:focus-visible img{transform:none}
}

/* ==========================================================================
   LIGHTBOX (generic — activates on any page with .gallery-item[data-full])
   ========================================================================== */
body.lightbox-open{overflow:hidden}
.lightbox{position:fixed;inset:0;z-index:300;display:none;align-items:center;justify-content:center;background:rgba(10,13,18,.94);padding:32px}
.lightbox.is-open{display:flex}
.lightbox__dialog{position:relative;display:flex;flex-direction:column;align-items:center;gap:14px;max-width:92vw;max-height:86vh}
.lightbox__img{max-width:92vw;max-height:78vh;width:auto;height:auto;object-fit:contain;opacity:0;transition:opacity .25s ease;background:#0E1218}
.lightbox__img.is-visible{opacity:1}
.lightbox__caption{color:rgba(255,255,255,.65);font-size:13px;letter-spacing:.06em}
.lightbox__btn{position:fixed;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.25);color:#fff;border-radius:50%;width:46px;height:46px;display:flex;align-items:center;justify-content:center;font-size:22px;line-height:1;cursor:pointer;transition:background .2s}
.lightbox__btn:hover{background:rgba(255,255,255,.18);color:#fff}
.lightbox__close{top:24px;right:24px}
.lightbox__prev{left:24px;top:50%;transform:translateY(-50%)}
.lightbox__next{right:24px;top:50%;transform:translateY(-50%)}
@media(max-width:650px){
  .lightbox__btn{width:40px;height:40px;font-size:18px}
  .lightbox__close{top:14px;right:14px}
  .lightbox__prev{left:10px}
  .lightbox__next{right:10px}
}
@media (prefers-reduced-motion: reduce){
  .lightbox__img{transition:none}
}

/* ==========================================================================
   KONTAKT PAGE
   ========================================================================== */
.kontakt-hero{max-width:1100px;margin:0 auto;padding:clamp(48px,7vw,96px) clamp(18px,4vw,56px) clamp(28px,4vw,48px)}
.kontakt-hero__title{font-size:clamp(38px,6vw,80px);color:#F2F5F8;margin-bottom:24px}
.kontakt-hero__desc{font-size:18px;color:#A7B1BE;font-weight:300;max-width:600px}

.kontakt-main{max-width:1100px;margin:0 auto;padding:0 clamp(18px,4vw,56px) clamp(64px,9vw,120px)}
.kontakt-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:clamp(24px,3vw,48px);align-items:start}
.kontakt-info{display:flex;flex-direction:column;gap:18px}
.info-card{border:1px solid rgba(255,255,255,.1);padding:28px 30px;background:#1A1F27}
.info-card__label{color:#8A97A8;font-size:12px;letter-spacing:.2em;text-transform:uppercase;margin-bottom:14px}
.info-card__phone{display:block;font-family:'Quicksand',sans-serif;font-size:24px;font-weight:600;color:#F2F5F8;margin-bottom:6px}
.info-card__email{display:block;font-size:16px;color:#1E2530}
.info-card__address{font-size:16px;color:#F2F5F8;line-height:1.7}

.kontakt-form{border:1px solid rgba(255,255,255,.1);padding:clamp(28px,3vw,40px);display:flex;flex-direction:column;gap:16px}
.kontakt-form__title{font-family:'Quicksand',sans-serif;font-size:22px;font-weight:600;color:#F2F5F8;margin-bottom:6px}
.kontakt-form__input{border:none;border-bottom:1.5px solid rgba(255,255,255,.22);padding:12px 2px;font-family:inherit;font-size:15px;background:none;outline:none;color:#E6EAF0;width:100%}
.kontakt-form__input--textarea{resize:vertical}
.kontakt-form__checkbox-label{display:flex;gap:10px;align-items:center;font-size:13.5px;color:#A7B1BE;margin-top:4px}
.kontakt-form__checkbox{width:16px;height:16px}
.kontakt-form__submit{margin-top:10px;background:#fff;color:#0E1218;border:none;font-family:inherit;font-weight:600;font-size:15px;padding:16px;cursor:pointer;border-radius:2px}
.kontakt-form__submit:hover{background:#E7E9ED}
.kontakt-form__submit:disabled{opacity:.6;cursor:default}
.kontakt-form__honeypot{position:absolute;left:-9999px;width:1px;height:1px;opacity:0;overflow:hidden}
.kontakt-form__status{font-size:13.5px;min-height:1.2em}
.kontakt-form__status--ok{color:#8FD9A8}
.kontakt-form__status--error{color:#E68B8B}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{background:#0A0D12;color:#fff;padding:clamp(56px,7vw,88px) 0 0}
.site-footer__inner{max-width:1320px;margin:0 auto;padding:0 clamp(18px,4vw,56px)}
.site-footer__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:40px;padding-bottom:56px}
.footer-brand__row{display:flex;align-items:center;gap:12px;margin-bottom:20px}
.footer-brand__logo-img{height:34px}
.footer-brand__logo-text{font-family:'Quicksand',sans-serif;font-weight:600;font-size:20px;letter-spacing:.3em;color:#fff}
.footer-brand__desc{color:rgba(255,255,255,.55);font-size:14px;font-weight:300;max-width:280px}
.footer-social{display:flex;gap:12px;margin-top:18px}
.footer-social__link{display:flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,.08);color:rgba(255,255,255,.72);transition:background .2s ease,color .2s ease}
.footer-social__link:hover,.footer-social__link:focus-visible{background:rgba(255,255,255,.16);color:#fff}
.footer-col__label{color:#6B7688;font-size:11.5px;letter-spacing:.2em;text-transform:uppercase;margin-bottom:18px}
.footer-col__links{display:flex;flex-direction:column;gap:11px}
.footer-col__link{color:rgba(255,255,255,.72);font-size:14px;cursor:pointer}
.footer-col__link:hover{color:#fff}
.footer-contact__phone{display:block;color:#fff;font-size:16px;font-weight:500;margin-bottom:8px}
.footer-contact__email{display:block;color:rgba(255,255,255,.72);font-size:14px;margin-bottom:18px}
.footer-contact__address{color:rgba(255,255,255,.55);font-size:13.5px;font-weight:300;line-height:1.7}
.site-footer__bottom{border-top:1px solid rgba(255,255,255,.1);padding:26px 0;display:flex;flex-wrap:wrap;gap:12px 32px;justify-content:space-between;color:rgba(255,255,255,.4);font-size:12.5px}

.kontakt-hero__desc--strong {
  color: #F2F5F8;
  font-weight: 600;
}
