/* =========================================
   Universal CSS Reset / Base Styles
   ========================================= */

/* Box sizing */
*, *::before,*::after {  box-sizing: border-box; }
/* Remove default margin & padding */
* {  margin: 0;  padding: 0;}
/* Smooth scrolling */
html {  scroll-behavior: smooth;}
/* Body defaults */
body {  min-height: 100vh;  text-rendering: optimizeSpeed;  -webkit-font-smoothing: antialiased;  line-height: 1.5;  font-family: sans-serif; }
/* Media elements */
img,picture,video,canvas,svg {  display: block;  max-width: 100%;}
/* Form elements inherit font */
input,button,textarea,select {  font: inherit;  border: none;  outline: none;  background: none;}
/* Buttons */
button {  cursor: pointer;}
/* Links */
a {  text-decoration: none;  color: inherit;}
/* Lists */
ul,ol {  list-style: none;}
/* Tables */
table {  border-collapse: collapse;  border-spacing: 0;}
/* Text overflow fixes */
p, h1,h2,h3,h4,h5,h6 {  overflow-wrap: break-word;}
/* Textarea resize */
textarea {  resize: vertical;}
/* Remove animations for accessibility */
@media (prefers-reduced-motion: reduce) {
  html {    scroll-behavior: auto;  }
  *,  *::before,  *::after {    animation-duration: 0.01ms !important;    animation-iteration-count: 1 !important;    transition-duration: 0.01ms !important;  }
}
img, svg { max-width: 100%; height: auto;}
/* -- -- */
/* ------------------------ common ------------------------ */
:root {
  --primary-color: #030115;
  --secondary-color: #222;
  --text-color: #fff;

  --font-main: "DM Sans", sans-serif;

  --border-radius: 10px;
  --transition: all 0.3s ease;

  --container-width: 1200px;
  --section-padding: 80px;
}
.flex-container { display: flex; flex-wrap: wrap;  justify-content: space-between;} .align-center { align-items: center;}
.container-large, .container { width: calc(100% - 0px); max-width:calc(1800px - 0px); padding: 0 50px;}
.container-large { max-width: calc(2000px - 0px); margin: 0 auto;  }

body {background-color: var(--primary-color); }
#page { font-family:var(--font-main); font-size: 16pt; line-height: 18pt;  color: var(--text-color); letter-spacing: 0.5px ; }
p { line-height: 26pt;}


.header-wrapp { position: fixed; top: 0; left: 0; z-index: 1600; width: 100%; padding: 40px 0;}
.site-logo:link, .site-logo:visited { width: 180px; display: block;}
/* ----------------------- hero section -------------------------- */

.home-hero-section { height: 100svh; position: relative; background-image: url(../images/hero-image.webp); background-repeat: no-repeat; background-repeat: no-repeat;  background-size: cover; background-position: center center;  }
.hero-p { width: 400px;}
.hero-caption-wrapp { width: calc(100% - 0px);}
.hero-caption { width: calc(60% - 0px);}
.hero-bottom { position: absolute; bottom: 0; left:0; width: 100%; padding-bottom: 60px; }

.works-group-wrapp{
 margin: 0 auto;
  overflow:hidden;
}

.work-group{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:80px;
  margin:120px 0;
}

.work-details { flex:1;}
.work-image{
  flex:2;
  will-change:transform; border-radius: 50px;
}

.work-image img{
  width:100%;
  display:block;
  border-radius:20px;
}

@media(max-width:768px){

  .work-group{
    flex-direction:column;
    gap:40px;
  }

}



.hero-caption h1 { font-size: 50pt; line-height: 50pt;}
.hero-caption h2 { font-size: 70pt; line-height: 88pt;}
.works-title{
  overflow:hidden;
}

.works-title h2, .widget-title h2{
  font-size:clamp(40px, 10vw, 100px);
  line-height:0.9;
  font-weight:800;
  text-transform:uppercase;
}

.works-title .char{
  display:inline-block;
  will-change:transform;
}


.link-btns a:link, .link-btns a:visited { display: block; padding: 15px 25px; border: 1px solid #fff; border-radius: 10px; text-transform: uppercase; font-size: 10pt; letter-spacing: 2px;}

.prj-name { 

  font-size:clamp(20px, 10vw, 40px);
  line-height: normal;
  
  font-weight:800;
  text-transform:uppercase; padding-bottom: 20px;


}

.pinned-wrapper { position: relative;}


.who-we-are-wrapp{
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}


.panel {
  height: 100svh;


}

.panel-1 { background: #111; color: #fff; }
.panel-2 { background: #333; color: #fff; }
.panel-3 { background: #555; color: #fff; }
.panel-4 { background: #777; color: #fff; }





.work-group{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:80px;
  margin:120px 0;
}

.work-details { flex:1;}
.work-image{
  flex:2;
  will-change:transform; border-radius: 50px;
}

.work-image img{
  width:100%;
  display:block;
  border-radius:20px;
}



.hero-caption h1 { font-size: 50pt; line-height: 50pt;}
.hero-caption h2 { font-size: 70pt; line-height: 88pt;}
.works-title{
  overflow:hidden;
}

.works-title h2{
  font-size:clamp(60px, 10vw, 180px);
  line-height:0.9;
  font-weight:800;
  text-transform:uppercase;
}

.works-title .char{
  display:inline-block;
  will-change:transform;
}


.link-btns a:link, .link-btns a:visited { display: block; padding: 15px 25px; border: 1px solid #fff; border-radius: 10px; text-transform: uppercase; font-size: 10pt; letter-spacing: 2px;}

.prj-name { 

  font-size:clamp(20px, 10vw, 40px);
  line-height: normal;
  
  font-weight:800;
  text-transform:uppercase; padding-bottom: 20px;


}



/* ---------------- menu --------------------- */
.hamburger {
    width: 36px;
}

.hamburger .line {
    width: 30px;
    height: 2px;
    background-color: #6f7272;
    display: block;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.menu-overlay.menu-open .hamburger .line {
    background-color: var(--brandColor);
}

.hamburger:hover {
    cursor: pointer;
}

/* ONE */
.hamburger.is-active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .line:nth-child(1) {
    -webkit-transform: translateY(6px) rotate(45deg);
    -ms-transform: translateY(6px) rotate(45deg);
    -o-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg);
}

/* ONE */
.hamburger.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    -ms-transform: translateY(-9px) rotate(-45deg);
    -o-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
}

/* ------------------------------ */

