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

html, body {
  height: 100%;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #000;
  color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.site-header{
  position: fixed;             
  top:0; left:0; right:0; height:64px;
  padding: 0 24px 0 24px;
  display:flex; align-items:center; justify-content:space-between;
  z-index: 1000;
  color:#fff;
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  background: rgba(0,0,0,.22);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.brand{
  font-family:'BodyTextLarge',sans-serif;
  font-weight:700; letter-spacing:1px; font-size:1rem;
}
.header-right{ display:flex; align-items:center; gap:20px; }

.lang-toggle{
  font-family:'BodyTextLarge',sans-serif;
  font-size:.95rem; letter-spacing:1px;
  color:#fff; background:transparent; border:none; cursor:pointer;
  padding:8px 10px;
}
.lang-toggle:hover{ opacity:.75; }

.hamburger{
  width:36px; height:28px; position:relative; border:none; background:transparent; cursor:pointer;
  display:inline-flex; align-items:center; justify-content:center; padding:0;
}
.hamburger span{
  position:absolute; left:0; right:0; height:2px; background:#fff; border-radius:2px;
  transition:transform .25s ease, opacity .25s ease;
}
.hamburger span:nth-child(1){ top:6px; }
.hamburger span:nth-child(2){ top:13px; }
.hamburger span:nth-child(3){ top:20px; }
.hamburger:hover span{ opacity:.8; }

#menu-section.menu-section {
  min-height: 100vh;
  background-size: cover;
  background-position: center top 28%;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  padding-left: 60px;
  position: relative;
}

#menu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45); 
  z-index: 1;
}

#menu-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 2;
  position: absolute;
}

#menu-section li { margin: 10px 0; }

#menu-section a {
  font-family: 'BodyTextLarge', sans-serif;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 2.4rem;
  line-height: 1.2;
  transition: opacity .3s ease;
  background-position: top center;
}

#menu-section a:hover { opacity: .7; }

@media (max-width: 768px) {
  #menu-section { padding-left: 28px; }
  #menu-section a { font-size: 1.8rem; }
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-family: 'BodyTextLarge', sans-serif;
  color: white;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.6;
}

@media (prefers-color-scheme: light) {
  .site-header { background-color: rgba(0,0,0,0.28); }
}

.about-section {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(8px) brightness(0.8);
  -webkit-backdrop-filter: blur(8px) brightness(0.8);
  z-index: 1;
  background-size: cover;
}

.about-overlay {
  position: relative; 
  z-index: 2; 
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding-left: 120px;
  background-size: cover;
}

.about-text p {
  font-family: 'BodyTextLarge', sans-serif;
  color: white;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.5px;
  max-width: 850px;
  text-transform: uppercase;
  font-weight: 600;
}

.services-section{
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: left center 10%; 
  overflow: hidden;
}
.services-section::before{
  content:"";
  position:absolute; inset:0;
  backdrop-filter: blur(8px) brightness(.9);
  -webkit-backdrop-filter: blur(8px) brightness(.9);
  z-index:1;
}
.services-overlay{
  position:absolute; inset:0; z-index:2;
  display:flex; align-items:center; justify-content:flex-start;
  padding-left:60px;
}
.services-list{
  list-style:none; margin:0; padding:0;
  color:#fff; font-family:'BodyTextLarge',sans-serif;
  font-weight:700; letter-spacing:1px; text-transform:uppercase;
  font-size:1.6rem; line-height:1.6;
  max-width: 650px;
}
.services-list li{ margin: 6px 0; }

.services-mark{
  margin-left:auto; margin-right:60px;
  max-height: 40vh; opacity:.9;
}

.i18n-fade{ display:inline-block; transition:opacity .15s ease, transform .15s ease; will-change:opacity,transform; }
.i18n-fade.is-fading{ opacity:0; transform:translateY(6px); }

@media (max-width:768px){
  .services-overlay{ padding-left:28px; }
  .services-list{ font-size:1.1rem; line-height:1.5; max-width: 95%; }
  .services-mark{ display:none; }
}

.clients-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.clients-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: blur(8px) brightness(0.9);
  transform: scale(1.1); 
  z-index: 0;
}

.clients-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw;
}

.clients-logos {
  width: 180%;           
  max-width: none;       
  height: auto;
  object-fit: contain;
  transform: scale(1.15); 
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.clients-logos:hover {
  transform: scale(1.25);
  opacity: 0.9;
}

.contacts-section {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.contacts-section::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(8px) brightness(.9);
  -webkit-backdrop-filter: blur(8px) brightness(.9);
  z-index: 1;
}

.contacts-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
}

.contacts-info {
  color: #fff;
  font-family: 'BodyTextLarge', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.3rem;
  line-height: 1.7;
  max-width: 600px;
}

.contacts-logo {
  max-height: 40vh;
  opacity: .9;
}

@media (max-width: 768px) {
  .contacts-overlay {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 40px;
    padding: 0 20px;
  }

  .contacts-logo {
    margin-top: 20px;
    max-height: 28vh;
  }
}

.photo {
  height: 100vh;
  background-size: cover;
  background-position: top center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease-out, transform 1.2s ease-out;
}

.photo-wrapper{
  position: relative;
  height: 100vh;
  overflow: hidden;
}
@supports (height: 100svh){
  .photo-wrapper{ height: 100svh; }
}

.photo-5085{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;          
  object-position: 35% 55%; 

  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1s ease-out, transform 1.2s ease-out;
}
.photo-5085.visible{
  opacity: 1;
  transform: scale(1);
}

.bottom-text.left5085 { left: 60px; bottom: 50px; }

@media (max-width: 768px){
  .photo-5085{
    object-position: 98% center;  
  }
}

@media (max-width: 768px) {

  .bottom-text.left5085 {
    position: absolute !important;
    left: 20px !important;  
    font-size: 0.95rem !important;
  }
}

.photo-caption5085 {
  font-family: 'BodyTextLarge', sans-serif;
  position: absolute !important;
  top: 180px;           
  left: 50%;           
  transform: translateX(-50%);
  color: white;        
  font-size: 10rem;     
  font-weight: bold;
  text-shadow: none !important;
  text-align: center;
  pointer-events: none;
  letter-spacing: 10px;
}

.bottom-text {
  position: absolute;
  bottom: 40px;
  font-family: 'BodyTextLarge', sans-serif;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  text-shadow: none !important;
  letter-spacing: 1px;
}

.bottom-text.left5085 { left: 60px; bottom: 50px;}

.photo-grid-2 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  overflow: hidden;
}
.grid-item {
  background-size: cover;
  background-position: center top;
}

.grid-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: clamp(100px, 15vw, 220px);
  opacity: 0.9;
  pointer-events: none; 
}
.grid-item.visible { opacity: 1; transform: scale(1); }

@media (max-width: 768px) {
  .photo-grid-2{
    grid-template-columns: 1fr;   
    height: 100dvh;            
  }

  .photo-grid-2 .grid-item:nth-child(1){
    display: none;
  }

  .photo-grid-2 .grid-item:nth-child(2){
    grid-column: 1 / -1;
    grid-row: 1;
    height: 100dvh;
    background-position: center center;
    background-size: cover;
  }

  .photo-grid-2 .grid-mark{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
  }
}

.photo-full.photo-with-logo {
  position: relative;
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 6vw;        
}

.photo-full.photo-with-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15); 
  z-index: 1;
}

.photo-logo {
  position: relative;
  z-index: 2;
  width: clamp(80px, 14vw, 200px);
  opacity: 0.9;
  pointer-events: none;
  transform: translateY(10%);
}

@media (max-width: 768px) {
  .photo-full.photo-with-logo {
    justify-content: center;
    padding-right: 0;
    background-position: 30%;
  }

  .photo-logo {
    width: clamp(60px, 25vw, 140px);
    transform: translateY(20%);
  }
}

.photo-full {
  height: 100vh;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease-out, transform 1.2s ease-out;
}
.photo-full.visible { opacity: 1; transform: scale(1); }

.photo-full.special-photo-first{ background-position: center top;}

@media (max-width: 768px) {
  .photo-full.special-photo-first {
    background-position: 10% top;
    background-size: cover;        
  }
}

.photo.visible {
  opacity: 1;
  transform: scale(1);
}

.photo-search {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center top;
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo-caption-left {
  position: absolute;
  left: 60px;              
  top: 50%;                
  transform: translateY(-50%);
  font-family: 'BodyTextLarge', sans-serif;
  color: white;
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  opacity: 0;
  transform: translateY(-50%) translateX(-20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.photo-search.visible .photo-caption-left {
  opacity: 1;
  transform: translateY(0);
}

footer {
  text-align: center;
  padding: 40px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  background-color: #000;
  color: #aaa;
}

@font-face {
  font-family: 'BodyTextLarge';
  src: url('fonts/Body Text Large Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.i18n-fade {
  transition: opacity .15s ease, transform .15 ease;
  will-change: opacity, transform;
}
.i18n-fade.is-fading {
  opacity: 0;
  transform: translateY(6px);
}

#menu-section a.i18n-fade { display: inline-block; } 
.services-list.i18n-fade   { display: block; }       

@media (prefers-reduced-motion: reduce) {
  .i18n-fade { transition: none; transform: none; }
}

.photo-full.photo-as-img{
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  background: transparent !important;

  position: relative;
  height: 100vh;        
  overflow: hidden;
}
@supports (height: 100svh){
  .photo-full.photo-as-img{ height: 100svh; } 
}

.photo-full.photo-as-img > .ph-img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;             
  object-position: center 20%;   
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease-out, transform 1.2s ease-out;
}
.photo-full.photo-as-img.visible > .ph-img{
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 768px) {
  .photo-full.photo-as-img { display: none;}
}

.ovl{
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: none;
  width: 100vw;
  height: 100dvh;          
  min-height: 100svh;      
  overflow: hidden;
  background: #000;
}
.ovl.is-open{ display:block; }
body.no-scroll{
  overflow: hidden;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
}

.ovl__bg{
  position:absolute;
  top: -15vh; right: -10vw; bottom: -10vh; left: -15vw;
  background-size: cover;
  background-position: center 10%;
  filter: blur(16px) brightness(.85);
  transform: scale(1);
  opacity: 0;
  transition: opacity .6s ease;
  z-index: 0;
}


.ovl__bg::after{
  content:"";
  position:absolute; inset:0;
  background: rgba(0,0,0,.35); 
  backdrop-filter: blur(4px);
  z-index: 1;                  
}

.ovl.is-open .ovl__bg{ opacity:1; }

.ovl__topbar{
  position:absolute; top:0; left:0; right:0; height:64px;
  display:flex; align-items:center; justify-content:space-between;
  padding: 0 20px;
  z-index: 3;
  color:#fff;
  backdrop-filter: blur(10px) saturate(115%);
  background: rgba(0,0,0,.18);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.brand-mini{ font-family:'BodyTextLarge',sans-serif; font-weight:700; letter-spacing:1px; }

.ovl__content{
  position:absolute; inset:0; z-index: 2;
  display:flex; align-items:center; justify-content:center;
  padding: clamp(20px, 5vw, 60px);
  text-align: left;
}

.ovl-menu{
  list-style:none; margin:0; padding:0;
  display:flex; flex-direction:column; gap: clamp(10px, 2.6vh, 20px);
}
.ovl-menu a{
  display:inline-block;
  font-family:'BodyTextLarge',sans-serif;
  color:#fff; text-decoration:none;
  font-weight:700; letter-spacing:1px;
  font-size: clamp(28px, 6vw, 56px);
  text-transform: uppercase;
  transition: opacity .25s ease, transform .25s ease;
}
.ovl-menu a:hover{ opacity:.75; transform: translateX(4px); }

.ovl-text{
  color:#fff;
  font-family:'BodyTextLarge',sans-serif;
  font-weight:600; letter-spacing:.5px; text-transform:uppercase;
  line-height:1.7;
  font-size: clamp(14px, 1.8vw, 22px);
  max-width: min(900px, 92vw);
}
.ovl-split{
  display:flex; align-items:center; gap: clamp(20px, 6vw, 80px);
}
.ovl-split img{ max-height: 32vh; opacity:.9; }

.ovl__btn{
  color:#fff; background:transparent; border:1px solid rgba(255,255,255,.28);
  border-radius: 999px; padding: 6px 12px; cursor:pointer;
}
.ovl__btn:hover{ background: rgba(255,255,255,.08); }

@media (max-width: 700px){
  .ovl__topbar{ height:56px; }
  .ovl-split{ flex-direction:column; text-align:center; }
  .ovl-split img{ max-height: 22vh; }
}

.ovl.is-open[data-view="services"] .ovl__bg,
.ovl.is-open[data-view="services"] .ovl__bg--next {
  background-position: center 10% !important;
}

.ovl.is-open[data-view="contacts"] .ovl-split{
  display:flex;
  justify-content:space-between;         
  align-items:center;
  gap:clamp(20px,6vw,80px);
  width:min(1200px, 92vw);               
  margin:0 auto;
  padding:0 clamp(24px, 4vw, 60px);
  text-align:left;
}

.ovl.is-open[data-view="contacts"] .ovl-split .ovl-text{
  flex:1 1 auto;
  max-width:600px;
  font-family:'BodyTextLarge',sans-serif;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  font-size:clamp(14px,1.5vw,18px);
  line-height:1.6;
}

.ovl.is-open[data-view="contacts"] .ovl-split img{
  flex:0 0 auto;
  max-height:34vh;
  opacity:.9;
}

.nowrap{ white-space:nowrap; }

@media (max-width:768px){
  .ovl.is-open[data-view="contacts"] .ovl-split{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    width:100%;
    padding:0 20px;
  }
  .ovl.is-open[data-view="contacts"] .ovl-split img{
    max-height:22vh; margin-top:24px;
  }
  .nowrap{ white-space:normal; }
}


.ovl-text h3{
  margin: 0 0 .6em;
  font-family:'BodyTextLarge',sans-serif;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.2;
  margin-top: 10px;
}

.ovl-text p{
  margin: 0 0 1em;
}

.ovl-text ul{
  margin: .4em 0 0;
  list-style: disc;
  padding-left: 14px;            
}

.ovl-text ul.services-list{
  list-style: none;
}
.ovl-text li{
  margin: .3em 0;
  font-weight:700;
  letter-spacing:.5px;         
}

.services-list a{
  color:#fff;
  text-decoration:none;
  display:inline-block;
  transition:opacity .25s ease, transform .25s ease;
}
.services-list a:hover{ opacity:.75; transform: translateX(4px); }

.services-list{ gap: 6px; }
.services-list li{ margin: 6px 0; }

@media (max-width:700px){
  .ovl-text h3{ font-size: clamp(16px, 5vw, 22px); }
}

.ovl-table{
  width: min(820px, 92vw);
}
.ovl-table table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;          
}
.ovl-table th,
.ovl-table td{
  padding: 6px 10px;
  vertical-align: top;
  font-family:'BodyTextLarge',sans-serif;
  font-weight:700;
  letter-spacing:.5px;
  text-transform: uppercase;       
}
.ovl-table th{ opacity:.8; }
.ovl-table td.right,
.ovl-table th.right{ text-align: right; white-space: nowrap; padding-right: 50px;}

.ovl-table .muted{
  display: block;
  margin-left: 0px;
  margin-top: 2px;
  opacity: .7;
  font-weight:600;
  font-size: .9em;
}

@media (max-width: 560px){
  .ovl-table table{ border-spacing: 0 8px; }
  .ovl-table td, .ovl-table th{ padding: 4px 6px; }
  .ovl-table td.right{ font-weight:700; }
}

.ovl-text {
  max-height: 80vh;          
  overflow-y: auto;          
  overflow-x: hidden;
  scrollbar-width: thin; 
  scrollbar-color: rgba(255,255,255,0.3) transparent;
}

.ovl-text::-webkit-scrollbar {
  width: 6px;
}
.ovl-text::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.25);
  border-radius: 6px;
}
.ovl-text::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.5);
}

.ovl-menu a:active,
.ovl-menu a:focus {
  opacity: 1 !important;
  color: inherit !important;
  background: transparent !important;
  transform: none !important;
}
.special-signs{
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
