:root{
  --bg:#ffffff;
  --text:#111;
  --muted:#666;
  --line:#eaeaea;
  --black:#171717;
  --black2:#222;
  --shadow: 0 18px 40px rgba(0,0,0,.08);
  --wrap:min(1240px, 92%);
  --font1:"Jost", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font2:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:var(--font1);
  background:var(--bg);
  color:var(--text);
}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}

.wrap{width:var(--wrap); margin:0 auto}

/* Topbar */
.topbar{
  border-bottom:1px solid var(--line);
  background:#fff;
}
.topbar__row{
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 0;
  gap:12px;
  font-family:var(--font2);
  font-size:12px;
  color:#444;
}
.topbar__left{display:flex; gap:14px; align-items:center}
.soc{color:#111; opacity:.9}
.soc:hover{opacity:1}
.topbar__right{display:flex; gap:14px; align-items:center; flex-wrap:wrap}
.titem i{margin-right:8px; opacity:.8}
.tsep{width:1px; height:14px; background:#dcdcdc}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background:#fff;
  border-bottom:1px solid var(--line);
}
.header.is-sticky{box-shadow: 0 10px 30px rgba(0,0,0,.06)}
.header__row{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:18px;
}
.logo img{height:46px; width:auto}
.nav{display:flex; gap:26px; align-items:center}
.nav__a{
  font-family:var(--font2);
  font-size:12px;
  letter-spacing:.14em;
  color:#111;
  opacity:.85;
  padding:10px 0;
  position:relative;
}
.nav__a:hover{opacity:1}
.nav__a.is-active{opacity:1}
.nav__a::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-14px;
  height:2px; background:#111;
  width:0;
  transition: width 300ms cubic-bezier(.2,.8,.2,1);
}
.nav__a:hover::after,
.nav__a.is-active::after{
  width:100%;
}
.hdrBtns{display:flex; gap:10px; align-items:center}
.iconBtn{
  width:40px;height:40px;
  border:0; background:transparent;
  cursor:pointer; color:#111;
  opacity:.85;
}
.iconBtn:hover{opacity:1}
.burger{
  display:none;
  width:44px;height:40px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:8px;
  cursor:pointer;
}
.burger span{display:block;height:2px;background:#111;margin:7px 10px;border-radius:99px}

/* Hero */
.hero{
  position:relative;
  min-height: 75vh;
  overflow:visible;
  background:#ffffff;
  display:flex;
  flex-direction:column;
}
.hero__bg{
  position:absolute; inset:0;
  background-image: var(--hero);
  background-size:cover;
  background-position:center;
  filter: saturate(.9) contrast(1.02);
  opacity:1;
}
.hero__content{
  position:relative;
  padding: 80px 0 140px;
  min-height: calc(75vh - 100px);
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.hero__water{
  position:absolute;
  left:0; top:80px;
  font-family:var(--font2);
  font-weight:500;
  font-size: clamp(80px, 10vw, 180px);
  letter-spacing:.15em;
  color:#000;
  opacity:.04;
  pointer-events:none;
  z-index:1;
  white-space:nowrap;
}
.hero__h{
  position:relative;
  margin:0;
  font-weight:300;
  font-family:var(--font1);
  font-size: clamp(48px, 6vw, 78px);
  line-height:1.08;
  color:#111;
  max-width:800px;
  z-index:2;
  margin-top:0;
}
.hero__show{
  margin-top:40px; 
  display:flex; 
  gap:18px; 
  align-items:center;
  z-index:2;
  position:relative;
}
.play{
  width:58px;
  height:58px;
  border-radius:999px;
  background:#111;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  flex-shrink:0;
}
.play i{
  font-size:18px;
  margin-left:2px;
  color:#fff;
}
.hero__showCap{
  font-family:var(--font2);
  font-size:11px;
  letter-spacing:.18em;
  color:#111;
  opacity:.85;
  text-transform:uppercase;
  font-weight:500;
}

/* Hero bottom black bar */
.heroBar{
  position:absolute;
  left:0; right:0; bottom:0;
  transform: translateY(50%);
  z-index:3;
}
.heroBar__bg{
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 30% 50%, rgba(255,255,255,.06), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.00)),
    var(--black);
  opacity:1;
}
.heroBar__grid{
  position:relative;
  width:min(980px, 92%);
  margin-left:0;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:22px;
  padding:26px 28px;
  color:#fff;
  font-family:var(--font2);
}
.hno{
  opacity:.65; 
  font-size:12px; 
  letter-spacing:.12em;
  font-weight:400;
}
.ht1{
  margin-top:8px; 
  font-size:13px; 
  opacity:.92;
  font-weight:400;
}
.ht2{
  margin-top:4px; 
  font-size:12px; 
  opacity:.72;
  font-weight:300;
}

/* About split */
.aboutSplit{padding: 120px 0 40px}
.aboutSplit__grid{
  display:grid;
  grid-template-columns: .95fr 1.25fr;
  gap:46px;
  align-items:start;
}

/* About Company */
.aboutCompany{
  padding:80px 0;
  background:#fff;
}
.aboutCompany__grid{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap:60px;
  align-items:center;
}
.aboutCompany__image{
  display:flex;
  justify-content:center;
  align-items:center;
}
.aboutCompany__circle{
  position:relative;
  width:400px;
  height:400px;
  border-radius:50%;
  overflow:hidden;
}
.aboutCompany__circle img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.aboutCompany__content{
  padding:20px 0;
}
.aboutCompany__content h2{
  margin:12px 0 20px;
  font-weight:300;
  font-size:48px;
  line-height:1.1;
}
.aboutCompany__content p{
  font-family:var(--font2);
  color:#444;
  font-size:14px;
  line-height:1.9;
  margin-bottom:18px;
}
.aboutCompany__content b{
  color:#111;
  font-weight:500;
}

/* Philosophy */
.philosophy{
  padding:80px 0;
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,.02) 0 6px, transparent 6px 12px),
    linear-gradient(180deg, rgba(0,0,0,.95), rgba(0,0,0,.92));
  color:#fff;
}
.philosophy .tag--white{
  color:rgba(255,255,255,.7);
  margin-bottom:16px;
}
.philosophy h2{
  color:#fff;
  font-size:48px;
  font-weight:300;
  margin:0 0 50px;
}
.philosophy__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:28px;
}
.philosophy__card{
  position:relative;
  background:#fff;
  overflow:hidden;
  aspect-ratio:1;
}
.philosophy__card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 700ms cubic-bezier(.2,.8,.2,1);
}
.philosophy__icon{
  position:absolute;
  top:20px;
  left:20px;
  width:50px;
  height:50px;
  background:rgba(255,255,255,.95);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
  color:#111;
  font-size:20px;
}
.philosophy__content{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  background:linear-gradient(0deg, rgba(0,0,0,.9), rgba(0,0,0,.7), transparent);
  color:#fff;
  padding:28px 24px 24px;
  z-index:2;
}
.philosophy__card h3{
  margin:0 0 8px;
  font-family:var(--font2);
  font-size:14px;
  letter-spacing:.14em;
  font-weight:400;
  color:#fff;
}
.philosophy__content p{
  margin:0;
  font-family:var(--font2);
  font-size:13px;
  line-height:1.6;
  color:rgba(255,255,255,.85);
}
.philosophy__card:hover img{
  transform:scale(1.08);
}

/* Stats */
.stats{
  padding:50px 0;
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.stats__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:40px;
  text-align:center;
}
.stat__number{
  font-size:42px;
  font-weight:300;
  color:#111;
  margin-bottom:8px;
  font-family:var(--font1);
}
.stat__label{
  font-family:var(--font2);
  font-size:12px;
  letter-spacing:.14em;
  color:#666;
  text-transform:uppercase;
}

/* How It Works */
.howItWorks{
  padding:80px 0;
  background:#fff;
}
.howItWorks__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:60px;
  align-items:start;
}
.howItWorks__content h2{
  margin:12px 0 40px;
  font-weight:300;
  font-size:48px;
  line-height:1.1;
}
.howItWorks__image{
  position:sticky;
  top:100px;
}
.howItWorks__image img{
  width:100%;
  height:auto;
}

/* FAQ */
.faq{
  margin-top:20px;
}
.faq__item{
  border-bottom:1px solid #e0e0e0;
  margin-bottom:0;
}
.faq__question{
  padding:20px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  font-family:var(--font2);
  font-size:15px;
  color:#111;
  transition:color 300ms;
}
.faq__question:hover{
  color:#444;
}
.faq__question i{
  font-size:12px;
  color:#888;
  transition:transform 300ms, color 300ms;
}
.faq__item--active .faq__question i{
  transform:rotate(180deg);
  color:#111;
}
.faq__answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 400ms cubic-bezier(.2,.8,.2,1), padding 400ms;
  padding:0 0 0 0;
}
.faq__item--active .faq__answer{
  max-height:500px;
  padding:0 0 20px 0;
}
.faq__answer p{
  font-family:var(--font2);
  font-size:14px;
  color:#666;
  line-height:1.8;
  margin:0;
}
.tag{
  font-family:var(--font2);
  font-size:11px;
  letter-spacing:.2em;
  color:#888;
  margin-bottom:12px;
}
.abTitle{
  margin:0;
  font-weight:300;
  font-size:46px;
  line-height:1.06;
}
.btnOutline{
  display:inline-block;
  margin-top:22px;
  position:relative;
  padding:16px 30px;
  border:2px solid #111;
  font-family:var(--font2);
  font-size:12px;
  letter-spacing:.18em;
}
.btnOutline:after{
  content:"";
  position:absolute;
  right:-12px; bottom:-12px;
  width:34px; height:34px;
  border-right:2px solid #111;
  border-bottom:2px solid #111;
}
.btnOutline span{display:inline-block}
.abRight{
  font-family:var(--font2);
  color:#444;
  font-size:13px;
  line-height:1.9;
}
.abMini{
  font-weight:600;
  letter-spacing:.16em;
  font-size:12px;
  color:#111;
  margin-bottom:12px;
}
.abRight b{color:#111}

/* Gallery row */
.galleryRow{padding: 30px 0 60px}
.ggrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:26px;
  align-items:stretch;
}
.gcard{
  overflow:hidden;
  background:#f3f3f3;
  position:relative;
  display:block;
}
.gcard img{
  width:100%; 
  height:320px; 
  object-fit:cover;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1), filter 700ms cubic-bezier(.2,.8,.2,1);
}
.gplus{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  background:rgba(0,0,0,.18);
  opacity:0; 
  transition: opacity 700ms cubic-bezier(.2,.8,.2,1);
  pointer-events:none;
}
.gplus span{
  width:60px;height:60px;border-radius:999px;
  background:#111; color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:28px;
  line-height:0;
  transform:scale(.85);
  transition: transform 700ms cubic-bezier(.2,.8,.2,1);
}
.gcard:hover .gplus{opacity:1}
.gcard:hover .gplus span{transform:scale(1)}
.gcard:hover img{
  transform:scale(1.05);
  filter:saturate(.95) contrast(.98);
}

/* Services */
.services{padding: 40px 0 80px}
.centerHead{text-align:center; margin-bottom:36px}
.centerHead h2{
  margin:0;
  font-weight:300;
  font-size:48px;
}
.dots{
  width:42px; height:10px;
  margin:12px auto 0;
  border-bottom:2px dotted #bbb;
}
.dots--left{margin-left:0}

.srvGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:46px 46px;
  align-items:start;
  padding-top:10px;
}
.srv{
  text-align:center;
  color:#333;
  padding:22px 20px;
  position:relative;
  transition: transform 300ms cubic-bezier(.2,.8,.2,1);
}
.srv::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    linear-gradient(0deg, rgba(0,0,0,.92), rgba(0,0,0,.92));
  opacity:0;
  transition: opacity 700ms cubic-bezier(.2,.8,.2,1);
  z-index:-1;
}
.srv::after{
  content:"";
  position:absolute;
  right:-10px; bottom:-10px;
  width:100%; height:100%;
  border-right:1px solid #111;
  border-bottom:1px solid #111;
  opacity:0;
  transition: opacity 700ms cubic-bezier(.2,.8,.2,1);
  pointer-events:none;
}
.srv:hover{
  transform:translateY(-2px);
}
.srv:hover::before{
  opacity:1;
}
.srv:hover::after{
  opacity:1;
}
.srv:hover .srv__t,
.srv:hover .srv__d,
.srv:hover .srv__ic{
  color:#fff;
}
.srv:hover .srv__ic{
  filter: grayscale(1) invert(1);
  opacity:1;
  color:#fff;
}
.srv__ic{
  font-size:34px;
  margin-bottom:14px;
  color:#111;
  opacity:.85;
  transition: color 700ms cubic-bezier(.2,.8,.2,1), filter 700ms cubic-bezier(.2,.8,.2,1), opacity 700ms cubic-bezier(.2,.8,.2,1);
}
.srv__t{
  font-weight:400;
  font-size:18px;
  margin-bottom:10px;
  font-family:var(--font1);
  transition: color 700ms cubic-bezier(.2,.8,.2,1);
}
.srv__d{
  font-family:var(--font2);
  font-size:13px;
  line-height:1.9;
  color:#777;
  max-width:320px;
  margin:0 auto;
  transition: color 700ms cubic-bezier(.2,.8,.2,1);
}
.srv__more{
  transition: color 700ms cubic-bezier(.2,.8,.2,1);
}
.srv:hover .srv__more{
  color:#fff;
}
.srv__more{
  display:inline-block;
  margin-top:12px;
  font-family:var(--font2);
  font-size:11px;
  letter-spacing:.14em;
  color:#111;
  opacity:.75;
  text-transform:uppercase;
}
.srv__more:hover{opacity:1}

/* Vision split */
.vision{padding: 0 0 90px}
.vision__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.vision__left{
  padding:70px 70px;
  background:
    repeating-linear-gradient(135deg, #f7f7f7 0 6px, #ffffff 6px 12px);
}
.vision__left h2{
  margin:0;
  font-weight:300;
  font-size:48px;
}
.vision__left p{
  font-family:var(--font2);
  color:#666;
  font-size:13px;
  line-height:1.9;
  max-width:520px;
}
.meters{margin-top:30px; max-width:520px}
.mrow{margin-top:18px; position:relative}
.mlbl{
  font-family:var(--font2);
  font-size:11px;
  letter-spacing:.14em;
  color:#111;
  opacity:.8;
  text-transform:lowercase;
}
.mbar{
  height:2px;
  background:#ddd;
  margin-top:10px;
  position:relative;
  overflow:hidden;
}
.mbar span{
  display:block;
  height:2px;
  background:#111;
  position:relative;
  width:0%;
  transition: width 1200ms cubic-bezier(.2,.8,.2,1);
}
.mbar.animated span[data-value]{
  width:var(--progress-value, 0%);
}
.mbar span:after{
  content:"";
  position:absolute;
  right:-1px; top:-3px;
  width:8px;height:8px;border-radius:999px;
  background:#111;
}
.mval{
  position:absolute;
  right:0; top:16px;
  font-family:var(--font2);
  font-size:12px;
  color:#111;
  opacity:.75;
}

.vision__right img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.vision--image{
  padding:0;
}
.vision__imageFull{
  width:100%;
  height:500px;
  overflow:hidden;
}
.vision__imageFull img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.vision--objectives{
  padding:0;
}
.vision__grid--reverse{
  grid-template-columns: 1fr 1fr;
}
.vision__grid--reverse .vision__left{
  order:2;
  background:
    repeating-linear-gradient(135deg, #f7f7f7 0 6px, #ffffff 6px 12px);
}
.vision__grid--reverse .vision__right{
  order:1;
}

/* Team */
.team{
  position:relative;
  padding: 80px 0 90px;
  background:#fafafa;
  overflow:hidden;
}
.team__bg{
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,0,0,.05), transparent 55%),
    linear-gradient(90deg, rgba(0,0,0,.03), transparent 40%, rgba(0,0,0,.03));
  opacity:.55;
  pointer-events:none;
}
.teamGrid{
  position:relative;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:28px;
  margin-top:40px;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
}
.tbox{
  position:relative;
  display:block;
  overflow:hidden;
  background:#eee;
  height:360px;
}
.tbox img{width:100%; height:100%; object-fit:cover}
.tbox__ov{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.0), rgba(0,0,0,.55));
  opacity:.7;
}
.tbox__name{
  position:absolute; left:0; right:0; top:50%;
  transform:translateY(-50%);
  text-align:center;
  font-family:var(--font2);
  color:#fff;
  letter-spacing:.12em;
  font-size:14px;
}
.tbox__plus{
  position:absolute; left:50%; top:58%;
  transform:translateX(-50%);
  color:#fff;
  font-size:22px;
  opacity:.9;
}
.tbox__info{
  position:absolute;
  left:0; right:0; bottom:0;
  background:#fff;
  padding:24px;
  transform:translateY(100%);
  transition:.3s;
}
.tbox:hover .tbox__info{transform:translateY(0)}
.tbox__info h4{
  margin:0 0 8px;
  font-family:var(--font2);
  font-size:16px;
  font-weight:500;
}
.tbox__info p{
  margin:0;
  font-family:var(--font2);
  font-size:12px;
  color:#666;
  line-height:1.6;
}

/* Blog teaser */
.blogTeaser{
  padding: 90px 0 70px;
  border-top:1px solid var(--line);
}
.blogTeaser__grid{
  display:grid;
  grid-template-columns: 1fr .8fr;
  align-items:center;
  gap:22px;
}
.blogTeaser h2{margin:0; font-weight:300; font-size:52px}
.blogTeaser__btn{display:flex; justify-content:flex-end}

/* Page heads */
.pageHead{
  padding:50px 0 24px;
  border-bottom:1px solid var(--line);
  background:#fff;
  position:relative;
}
.pageHead--hero{
  padding:120px 0 60px;
  border-bottom:none;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  min-height:400px;
  display:flex;
  align-items:center;
}
.pageHead--hero .pageHead__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.4);
}
.pageHead--hero .pageHead__row{
  position:relative;
  z-index:1;
}
.pageHead--hero h1{
  color:#fff;
  font-size:72px;
  font-weight:300;
  margin:0 0 12px;
}
.pageHead--hero .crumbs{
  color:rgba(255,255,255,.9);
}
.pageHead--hero .crumbs a{
  color:rgba(255,255,255,.9);
}
.pageHead--hero .crumbs b{
  color:#fff;
}
.pageHead h1{
  margin:0;
  font-weight:300;
  font-size:54px;
}
.crumbs{
  margin-top:10px;
  font-family:var(--font2);
  font-size:12px;
  color:#777;
  letter-spacing:.08em;
}
.crumbs span{margin:0 10px; color:#bbb}

/* Portfolio */
.pwrap{padding:50px 0 80px}
.filters{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:22px}
.fbtn{
  border:1px solid var(--line);
  background:#fff;
  padding:10px 14px;
  font-family:var(--font2);
  font-size:12px;
  letter-spacing:.12em;
  cursor:pointer;
}
.fbtn.is-active{border-color:#111}
.pgrid{display:grid; grid-template-columns: repeat(3, 1fr); gap:18px}
.pitem{position:relative; overflow:hidden; height:280px; background:#eee}
.pitem img{width:100%; height:100%; object-fit:cover}
.pov{position:absolute; inset:0; background:rgba(0,0,0,.45); opacity:0; transition:.2s}
.pt{position:absolute; left:16px; bottom:16px; color:#fff; font-family:var(--font2); letter-spacing:.12em; font-size:12px; opacity:0; transition:.2s}
.pplus{position:absolute; right:16px; top:16px; width:44px; height:44px; border-radius:999px; background:#111; color:#fff; display:flex; align-items:center; justify-content:center; opacity:0; transition:.2s}
.pitem:hover .pov,.pitem:hover .pt,.pitem:hover .pplus{opacity:1}

/* Project Detail */
.projectDetail{padding:50px 0 80px}
.projectInfo{
  margin-bottom:40px;
  padding-bottom:24px;
  border-bottom:1px solid var(--line);
}
.projectInfo__meta{
  display:flex;
  gap:40px;
  flex-wrap:wrap;
}
.projectInfo__item{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.projectInfo__label{
  font-family:var(--font2);
  font-size:11px;
  letter-spacing:.14em;
  color:#888;
  text-transform:uppercase;
}
.projectInfo__value{
  font-family:var(--font1);
  font-size:16px;
  color:#111;
  font-weight:500;
}
.projectGallery{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
  margin-bottom:50px;
}
.projectGallery__item{
  width:100%;
  overflow:hidden;
  background:#f5f5f5;
}
.projectGallery__item img{
  width:100%;
  height:auto;
  display:block;
  transition:transform .4s ease;
}
.projectGallery__item:hover img{
  transform:scale(1.02);
}
.projectNav{
  text-align:center;
  padding-top:40px;
  border-top:1px solid var(--line);
}

/* Blog cards */
.bgrid{display:grid; grid-template-columns: repeat(3, 1fr); gap:18px}
.bcard{border:1px solid var(--line); background:#fff; box-shadow:var(--shadow)}
.bcard img{height:220px; width:100%; object-fit:cover}
.bbody{padding:16px}
.bdate{font-family:var(--font2); font-size:11px; letter-spacing:.12em; color:#888}
.bbody h3{margin:8px 0 8px; font-weight:400}
.bbody p{margin:0 0 10px; color:#666; font-family:var(--font2); font-size:13px; line-height:1.8}
.bbody a{font-family:var(--font2); font-size:12px; letter-spacing:.12em}

/* Contact */
.cgrid{display:grid; grid-template-columns: 1.1fr .9fr; gap:32px}
.cform{
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow);
  padding:32px;
}
.cform h2{
  margin:0 0 24px;
  font-weight:300;
  font-size:36px;
  color:#111;
}
.cform input,.cform textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid #ddd;
  font-family:var(--font2);
  font-size:14px;
  margin-bottom:16px;
  background:#fff;
  transition:border-color 300ms;
}
.cform input:focus,.cform textarea:focus{
  outline:none;
  border-color:#111;
}
.cform textarea{
  resize:vertical;
  min-height:120px;
}
.cinfo{
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow);
  padding:32px;
}
.cinfo--dark{
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 6px, transparent 6px 12px),
    linear-gradient(180deg, rgba(0,0,0,.95), rgba(0,0,0,.92));
  color:#fff;
  border:none;
}
.cinfo--dark .tag--white{
  color:rgba(255,255,255,.7);
  margin-bottom:16px;
}
.cinfo--dark h2{
  color:#fff;
  font-size:36px;
  font-weight:300;
  margin:0 0 16px;
}
.cinfo--dark p{
  color:rgba(255,255,255,.8);
  font-family:var(--font2);
  font-size:14px;
  line-height:1.8;
  margin:0 0 32px;
}
.cinfo__list{
  margin:32px 0;
}
.cinfo__item{
  display:flex;
  gap:16px;
  margin-bottom:24px;
  align-items:flex-start;
}
.cinfo__item i{
  font-size:20px;
  color:rgba(255,255,255,.8);
  margin-top:4px;
  flex-shrink:0;
}
.cinfo__item div{
  color:rgba(255,255,255,.9);
  font-family:var(--font2);
  font-size:14px;
  line-height:1.7;
}
.cinfo__item strong{
  color:#fff;
  font-weight:500;
  display:block;
  margin-bottom:4px;
}
.cinfo__social{
  display:flex;
  gap:12px;
  margin-top:32px;
  padding-top:32px;
  border-top:1px solid rgba(255,255,255,.15);
}
.cinfo__social a{
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,.8);
  transition:all 300ms;
}
.cinfo__social a:hover{
  background:rgba(255,255,255,.1);
  color:#fff;
  border-color:rgba(255,255,255,.4);
}
.row2{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.alert{padding:12px;border:1px solid #ddd;margin:10px 0 14px;font-family:var(--font2)}
.alert.ok{border-color:#bfe7c8;background:#f0fbf2}
.alert.bad{border-color:#f0bcbc;background:#fff1f1}
.ci{margin:10px 0; font-family:var(--font2); color:#444}
.ci i{margin-right:10px; opacity:.75}
.mapBox{
  margin-top:18px;
  height:240px;
  border:1px dashed #ccc;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#777;
  font-family:var(--font2);
}
.mapBox--full{
  margin-top:0;
  height:450px;
  border:none;
  border-radius:8px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.mapBox--full iframe{
  width:100%;
  height:100%;
  border:none;
}

/* Footer */
.footer{
  background: linear-gradient(180deg, #1c1c1c, #151515);
  color:#fff;
  padding-top:50px;
}
.fgrid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap:18px;
  padding-bottom:34px;
}
.flogo{height:42px}
.fhead{font-family:var(--font2); letter-spacing:.12em; font-size:12px; margin-bottom:14px}
.fmuted{color:rgba(255,255,255,.62); font-family:var(--font2); font-size:13px; line-height:1.8}
.fsoc{margin-top:14px; display:flex; gap:10px}
.fsoc__a{
  width:34px;height:34px;border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  display:flex; align-items:center; justify-content:center;
  color:#fff; opacity:.85;
}
.fsoc__a:hover{opacity:1}
.fitem{margin:12px 0; color:rgba(255,255,255,.7); font-family:var(--font2); font-size:13px}
.fitem i{margin-right:10px; opacity:.85}
.flist a{display:block; margin:12px 0; color:rgba(255,255,255,.7); font-family:var(--font2); font-size:13px}
.sub{display:flex; gap:10px; margin-top:12px}
.sub input{flex:1; padding:10px; border:1px solid rgba(255,255,255,.18); background:transparent; color:#fff}
.sub button{padding:10px 12px; border:1px solid rgba(255,255,255,.18); background:transparent; color:#fff; cursor:pointer}

.fbot{
  border-top:1px solid rgba(255,255,255,.12);
  padding:18px 0;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:rgba(255,255,255,.55);
  font-family:var(--font2);
  font-size:12px;
}
.fbot a{color:rgba(255,255,255,.65)}

/* Offcanvas */
.ovl{position:fixed; inset:0; background:rgba(0,0,0,.45); z-index:90}
.panel{
  position:fixed; top:0; right:0;
  width:min(420px, 92%);
  height:100%;
  background:#fff;
  border-left:1px solid var(--line);
  z-index:100;
  transform:translateX(110%);
  transition:.22s ease;
  display:flex;
  flex-direction:column;
}
.panel.is-open{transform:translateX(0)}
.panel__head{display:flex; justify-content:space-between; align-items:center; padding:16px; border-bottom:1px solid var(--line)}
.panel__title{font-family:var(--font2); letter-spacing:.14em; font-size:12px}
.panel__x{border:0;background:transparent;cursor:pointer}
.panel__links{padding:16px; display:flex; flex-direction:column; gap:12px; font-family:var(--font2); letter-spacing:.12em; font-size:12px}
.panel__block{padding:16px; border-top:1px solid var(--line)}
.panel__h{font-family:var(--font2); letter-spacing:.12em; font-size:12px; margin-bottom:12px}
.pgal{display:grid; grid-template-columns:repeat(3,1fr); gap:8px}
.pgal__it{overflow:hidden; background:#eee}
.pgal__it img{height:86px; width:100%; object-fit:cover}
.pinfo{font-family:var(--font2); color:#444; font-size:13px; line-height:1.8}
.pinfo i{margin-right:10px; opacity:.75}

/* Modals */
.modal{position:fixed; inset:0; display:flex; align-items:center; justify-content:center; background:rgba(0,0,0,.55); z-index:120}
.modal__box{width:min(520px, 92%); background:#fff; box-shadow:var(--shadow)}
.modal__box--wide{width:min(980px, 92%)}
.modal__head{display:flex; justify-content:space-between; align-items:center; padding:14px 16px; border-bottom:1px solid var(--line)}
.modal__t{font-family:var(--font2); letter-spacing:.12em; font-size:12px}
.modal__x{border:0;background:transparent;cursor:pointer}
.modal__input{width:calc(100% - 32px); margin:16px; padding:12px; border:1px solid #ddd; font-family:var(--font2)}
.modal__hint{padding:0 16px 16px; color:#777; font-family:var(--font2); font-size:12px}
.videoWrap{position:relative; padding-top:56.25%}
.videoWrap iframe{position:absolute; inset:0; width:100%; height:100%}

/* Scroll top */
.toTop{
  position:fixed; right:22px; bottom:22px;
  width:46px;height:46px;
  border:none;
  background:#777;
  color:#fff;
  cursor:pointer;
  opacity:0;
  transform:translateY(10px);
  transition: opacity 300ms cubic-bezier(.2,.8,.2,1), transform 300ms cubic-bezier(.2,.8,.2,1), background 300ms cubic-bezier(.2,.8,.2,1);
  z-index:130;
  display:grid;
  place-items:center;
  border-radius:4px;
}
.toTop.show{
  opacity:1;
  transform:translateY(0);
}
.toTop:hover{
  background:#111;
}

/* Reveal on scroll */
[data-animate]{
  opacity:0;
  transform: translateY(30px);
  transition: opacity 1000ms cubic-bezier(.25,.46,.45,.94), transform 1000ms cubic-bezier(.25,.46,.45,.94);
}
[data-animate].inview{
  opacity:1;
  transform: translateY(0);
}

/* Stagger animation for grid items */
[data-animate-stagger] > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms cubic-bezier(.25,.46,.45,.94), transform 800ms cubic-bezier(.25,.46,.45,.94);
}
[data-animate-stagger].inview > *:nth-child(1) { transition-delay: 0ms; }
[data-animate-stagger].inview > *:nth-child(2) { transition-delay: 100ms; }
[data-animate-stagger].inview > *:nth-child(3) { transition-delay: 200ms; }
[data-animate-stagger].inview > *:nth-child(4) { transition-delay: 300ms; }
[data-animate-stagger].inview > *:nth-child(5) { transition-delay: 400ms; }
[data-animate-stagger].inview > *:nth-child(6) { transition-delay: 500ms; }
[data-animate-stagger].inview > *:nth-child(7) { transition-delay: 600ms; }
[data-animate-stagger].inview > *:nth-child(8) { transition-delay: 700ms; }
[data-animate-stagger].inview > *:nth-child(9) { transition-delay: 800ms; }
[data-animate-stagger].inview > *:nth-child(10) { transition-delay: 900ms; }
[data-animate-stagger].inview > * {
  opacity: 1;
  transform: translateY(0);
}

/* Fade in from left */
[data-animate-left] {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1000ms cubic-bezier(.25,.46,.45,.94), transform 1000ms cubic-bezier(.25,.46,.45,.94);
}
[data-animate-left].inview {
  opacity: 1;
  transform: translateX(0);
}

/* Fade in from right */
[data-animate-right] {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1000ms cubic-bezier(.25,.46,.45,.94), transform 1000ms cubic-bezier(.25,.46,.45,.94);
}
[data-animate-right].inview {
  opacity: 1;
  transform: translateX(0);
}

/* Scale animation */
[data-animate-scale] {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 900ms cubic-bezier(.25,.46,.45,.94), transform 900ms cubic-bezier(.25,.46,.45,.94);
}
[data-animate-scale].inview {
  opacity: 1;
  transform: scale(1);
}

/* Hero text animation */
.hero__h {
  animation: fadeInUp 1.2s cubic-bezier(.25,.46,.45,.94) 0.3s both;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__show {
  animation: fadeInUp 1.2s cubic-bezier(.25,.46,.45,.94) 0.6s both;
}

/* Counter animation */
.stat__number {
  transition: transform 0.3s ease;
}
.stat__number.animate {
  animation: countUp 1.5s cubic-bezier(.25,.46,.45,.94) both;
}
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Smooth image reveal */
.gcard img,
.pitem img,
.bcard img,
.tbox img {
  transition: transform 0.8s cubic-bezier(.25,.46,.45,.94), opacity 0.8s cubic-bezier(.25,.46,.45,.94);
}

/* Button hover animation */
.btnOutline {
  transition: all 400ms cubic-bezier(.25,.46,.45,.94);
  overflow: hidden;
  position: relative;
}
.btnOutline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #111;
  transition: left 400ms cubic-bezier(.25,.46,.45,.94);
  z-index: -1;
}
.btnOutline:hover::before {
  left: 0;
}
.btnOutline:hover {
  color: #fff;
  border-color: #111;
}
.btnOutline span {
  position: relative;
  z-index: 1;
  transition: transform 400ms cubic-bezier(.25,.46,.45,.94);
}
.btnOutline:hover span {
  transform: translateX(4px);
}

/* Lightbox animation */
.lightbox.show .lb-backdrop {
  animation: fadeIn 300ms ease both;
}
.lightbox.show .lb-img {
  animation: scaleIn 400ms cubic-bezier(.25,.46,.45,.94) 100ms both;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Header animation */
.header {
  transition: box-shadow 400ms cubic-bezier(.25,.46,.45,.94), transform 400ms cubic-bezier(.25,.46,.45,.94);
}
.header.is-sticky {
  animation: slideDown 400ms cubic-bezier(.25,.46,.45,.94) both;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Progress bar animation */
.mbar span {
  transition: width 1.5s cubic-bezier(.25,.46,.45,.94);
}

/* Loading animation */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Image parallax effect - removed for vision section */

/* Service card enhanced animation */
.srv {
  transition: all 500ms cubic-bezier(.25,.46,.45,.94);
}
.srv:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

/* Team card animation */
.tbox {
  transition: transform 600ms cubic-bezier(.25,.46,.45,.94);
}
.tbox:hover {
  transform: translateY(-10px);
}

/* Portfolio item animation */
.pitem {
  transition: transform 500ms cubic-bezier(.25,.46,.45,.94), opacity 500ms cubic-bezier(.25,.46,.45,.94);
}
.pitem:hover {
  transform: scale(1.02);
}

/* Blog card animation */
.bcard {
  transition: transform 500ms cubic-bezier(.25,.46,.45,.94), box-shadow 500ms cubic-bezier(.25,.46,.45,.94);
}
.bcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
}

/* Tag animation - only for standalone tags */
.tag {
  animation: fadeInLeft 1s cubic-bezier(.25,.46,.45,.94) 0.2s both;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Reset tag animation inside animated parents to avoid conflicts */
[data-animate] .tag,
[data-animate-left] .tag,
[data-animate-right] .tag,
[data-animate-scale] .tag,
[data-animate-stagger] .tag {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  display:none;
  z-index:120;
}
.lightbox.show{
  display:block;
}
.lb-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.75);
}
.lb-img{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:min(1100px, 92vw);
  height:min(80vh, 720px);
  background:#000;
  display:grid;
  place-items:center;
  border-radius:14px;
  overflow:hidden;
}
.lightbox img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}
.lb-close{
  position:absolute;
  right:18px;
  top:18px;
  width:42px;
  height:42px;
  border-radius:10px;
  border:none;
  background:#fff;
  cursor:pointer;
  display:grid;
  place-items:center;
  font-size:18px;
  transition:background 300ms cubic-bezier(.2,.8,.2,1);
}
.lb-close:hover{
  background:#f5f5f5;
}

/* Responsive */
@media (max-width: 980px){
  .nav{display:none}
  .burger{display:block}
  .heroBar__grid{grid-template-columns:1fr; width:92%; margin:0 auto}
  .aboutSplit__grid{grid-template-columns:1fr}
  .ggrid{grid-template-columns:1fr 1fr}
  .srvGrid{grid-template-columns:1fr}
  .vision__grid{grid-template-columns:1fr}
  .vision__left{padding:50px 22px}
  .teamGrid{grid-template-columns:1fr}
  .blogTeaser__grid{grid-template-columns:1fr}
  .blogTeaser__btn{justify-content:flex-start}
  .pgrid{grid-template-columns:1fr 1fr}
  .bgrid{grid-template-columns:1fr}
  .cgrid{grid-template-columns:1fr}
  .row2{grid-template-columns:1fr}
  .fgrid{grid-template-columns:1fr 1fr}
}
@media (max-width: 520px){
  .ggrid{grid-template-columns:1fr}
  .pgrid{grid-template-columns:1fr}
}
