:root {
  --bg: #f4f0ea;
  --text: #111111;
  --muted: #6d6a64;
  --line: rgba(17, 17, 17, 0.14);
  --dark: #111111;
  --light: #fffaf3;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

.cursor {
  width: 18px;
  height: 18px;
  border: 1px solid var(--text);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: width .2s, height .2s, background .2s;
}
.cursor.active { width: 48px; height: 48px; background: rgba(0,0,0,.08); }

.site-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  /* mix-blend-mode: difference; */
  color: white;
}

.site-header.black{
  color: #111;
}
.logo { font-size: 20px; font-weight: 900; letter-spacing: -0.05em; }
.main-nav { display: flex; gap: 30px; font-size: 14px; font-weight: 600; }

.menu-toggle { display: none; background: none; border: 0; color: inherit; font: inherit; }


.main-bg {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
}
.main-bg img {
    width: 100%;
    object-position: center;
    object-fit: cover;
    height: 90rem;
    transform:scale(1.08);
  transition:transform .2s linear;
}

.section-padding { padding: 150px 48px; }
.section-padding-t{
  padding: 150px 0;
}
.section-padding.big { padding: 30rem 22px; }
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; gap: 40px; }
.hero-label { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: #fff;}
.hero-title { font-size: clamp(58px, 11vw, 178px); color: #fff; line-height: .88; letter-spacing: -0.05em; font-weight: 900; max-width: 1500px; }
.hero-bottom { display: flex; justify-content: space-between; align-items: end; gap: 40px; border-top: 1px solid var(--line); padding-top: 32px; }
.hero-bottom p { max-width: 480px; font-size: 20px; line-height: 1.45; color: #fff; }
.circle-link { width: 120px; height: 120px; border: 1px solid var(--bg); color: #fff; border-radius: 50%; display: grid; place-items: center; font-weight: 800; transition: .3s; }
.circle-link:hover { background: var(--text); color: var(--bg); transform: rotate(-12deg); }

/* .marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 20s linear infinite; }
.marquee span { font-size: clamp(48px, 7vw, 110px); font-weight: 900; letter-spacing: -0.07em; margin-right: 55px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } } */

.section-head { display: grid; grid-template-columns: 220px 1fr; gap: 40px; margin-bottom: 70px; border-top: 1px solid var(--line); padding-top: 30px; }
.section-head span { font-size: 13px; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; color: var(--muted); }
.section-head h2 { font-size: clamp(18px, 6vw, 92px); line-height: .96; letter-spacing: -0.07em;  }


.form-message{
  margin-top:20px;
  font-size:14px;
  color:#fff;
}


.about-section{
  padding:140px 6%;
  background:#f3f0ea;
  color:#111;
  overflow:hidden;
}

.about-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid #111;
  padding-top:14px;
  margin-bottom:50px;
}

.about-top span{
  font-size:12px;
  letter-spacing:2px;
}

.about-number{
  width:42px;
  height:42px;
  border:1px solid #111;
  border-radius:100px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.about-grid{
  display:flex;
  flex-direction: row;
  gap:90px;
  align-items:flex-start;
}

.about-left {
    display: flex;
    flex: 1;
    position: relative;
    flex-direction: column;
}
.about-right {
    display: flex;
    flex: 1;
    position: relative;
    flex-direction: column;
    overflow:hidden;
}

.marquee{
  width: 80vh;
  overflow: hidden;
  margin-bottom: 50px;
}

.marquee-track{
  display:flex;
  align-items:center;
  gap:70px;
  width:max-content;
  animation:marqueeMove 24s linear infinite;
}

.marquee-track span{
  font-size:32px;
  font-weight:700;
}

.about-text{
  margin-top: 5rem;
}

.about-text p{
  font-size:30px;
  line-height:1.4;
  letter-spacing:-1px;
  margin-bottom:28px;
}

.about-text a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:18px 34px;
  border:1px solid #111;
  border-radius:100px;
  color:#111;
  text-decoration:none;
  margin-top:20px;
  transition:.3s ease;
}

.about-text a:hover{
  background:#111;
  color:#fff;
}

.about-right img{
    width: 100%;
    height: 90vh;
    object-fit: cover;
    object-position: bottom;
     transition:transform .8s ease;
}


.about-right:hover img{
  transform:scale(1.05);
}

@keyframes marqueeMove{

  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-50%);
  }

}

@media(max-width:991px){
.about-section {
    padding: 40px 0;
}
  .about-grid{
    flex-direction: column;
  }

  .marquee{
  width: 40vh;
}

.about-text {
    margin-top: 1rem;
}
  .marquee-track span{
    font-size:20px;
  }

  .about-text p{
    font-size:22px;
  }

  /* .about-right img{
    height:500px;
  } */

}


.relative {
  position: relative;
}

.right_image{
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
}



.project-showcase{
  background:#f3f0ea;
  color:#050505;
  overflow:hidden;
}

.project-row{
  height:100vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:stretch;
  border-top:1px solid rgba(0,0,0,.15);
    overflow:hidden;
}

.project-row.reverse .project-info{
  order:2;
}

.project-row.reverse .project-image{
  order:1;
}

.project-info{
  padding:70px 3vw;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  position:relative;
  z-index:2;
}

.project-meta{
  display:flex;
  align-items:center;
  gap:40px;
  margin-bottom:50px;
}

.project-meta > span{
  font-size:28px;
  font-weight:800;
}

.project-meta div{
  display:flex;
  flex-direction: row;
  gap:10px;
  flex-wrap:wrap;
}

.project-meta div span{
      border: 1px solid #111;
    border-radius: 100px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
}

.project-info h2{
  font-size:clamp(70px,10vw,190px);
  line-height:.88;
  letter-spacing:-8px;
  font-weight:900;
  text-transform:uppercase;
  margin:0;
}

.project-image{
   position:relative;
  overflow:hidden;
  height:100vh;
}

.project-image img{
 width:100%;
  height:120%;
  object-position: bottom;
  object-fit:cover;
  transform:translateY(-10%) scale(1.08);
  will-change:transform;
}

.project-image.p_ img{
  object-position: center;
}



.project-description{
  max-width:520px;
  font-size:20px;
  line-height:1.5;
  margin-top:35px;
  color:rgba(0,0,0,.7);
  letter-spacing:-0.3px;
}

@media(max-width:991px){
.project-image img{
  height:50%;
}
  .project-row{
    grid-template-columns:1fr;
  }

  .project-row.reverse .project-info,
  .project-row.reverse .project-image{
    order:initial;
  }

  .project-info{
    padding:60px 6%;
  }

  .project-info h2{
    font-size:72px;
    letter-spacing:-3px;
  }

  .project-image{
    min-height:520px;
  }

}

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.work-card { cursor: pointer; }
.work-image { height: 520px; border-radius: 28px; transition: transform .35s ease; }
.work-card:hover .work-image { transform: scale(.97); }
/* .gradient-one { background: radial-gradient(circle at 30% 30%, #ffe2b7, #ba5936 45%, #19120f); } */
.gradient-one { background-image: url("../img/3_1.png") ; background-size: cover; background-position: center;}

/* .gradient-two { background: radial-gradient(circle at 70% 30%, #bcd6ff, #222b47 50%, #0b0b10); } */
.gradient-two { background-image: url("../img/5_1.png") ; background-size: cover; background-position: center;}

/* .gradient-three { background: radial-gradient(circle at 50% 20%, #e6d9c7, #827060 55%, #201b18); } */
.gradient-three { background-image: url("../img/higlafdy_urun_postArtboard-7.png") ; background-size: cover; background-position: bottom;}

.work-info { padding: 22px 4px; display: flex; justify-content: space-between; gap: 20px; }
.work-info h3 { font-size: 24px; letter-spacing: -0.04em; }
.work-info p { color: var(--muted); max-width: 220px; text-align: right; }

.services { background: #f3f0ea; color: #111; }
.services .section-head { border-color: rgba(255,255,255,.18); }
.services .section-head span { color: #111; }
.service-list { border-top: 1px solid #111; }
.service-item { display: grid; grid-template-columns: 120px 1fr 360px; gap: 40px; padding: 38px 0; border-bottom: 1px solid #111; align-items: center; transition:.4s ease;
  cursor:pointer;
transition: .6s ease-in-out; }
  .service-item:hover{
  padding:38px 30px;
  transition: .6s ease-in-out;
}
.service-item span { color: #111; font-weight: 800; }
.service-item h3 { font-size: clamp(32px, 5vw, 76px); letter-spacing: -0.07em; }
.service-item p { color: #111; line-height: 1.6; }

.big-text { font-size: clamp(44px, 8vw, 128px); line-height: .98; letter-spacing: -0.075em; max-width: 1400px; position: relative; z-index: 5; }
.contact-box { background: var(--text); color: var(--bg); padding: 70px; min-height: 420px; display: flex; flex-direction: column; justify-content: space-between; }
.contact-box span { text-transform: uppercase; letter-spacing: .16em; font-size: 13px; color: rgba(255,255,255,.55); font-weight: 800; margin-bottom: 1rem; }
.contact-box h2 { font-size: clamp(48px, 8vw, 130px); line-height: .9; letter-spacing: -0.08em; max-width: 900px; }
.contact-box a { font-size: 22px; font-weight: 700; margin-top: 2rem; }
.site-footer {  background: var(--text); padding: 34px 48px; display: flex; justify-content: space-between; color: var(--muted); border-top: 1px solid var(--line); }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }




.projects-hero{
  padding:220px 0 120px;
  background:#f3f0ea;
  color:#111;
}

.projects-hero span{
  display:block;
  font-size:13px;
  letter-spacing:.16em;
  font-weight:800;
  color:rgba(0,0,0,.5);
  margin-bottom:28px;
}

.projects-hero h1{
  font-size:clamp(76px,12vw,220px);
  line-height:.85;
  letter-spacing:-.09em;
  font-weight:900;
  margin-bottom:40px;
}

.projects-hero p{
  max-width:700px;
  font-size:24px;
  line-height:1.5;
  color:rgba(0,0,0,.7);
}

.projects-list{
  padding:40px 0 120px;
  background:#f3f0ea;
}

.project-item{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:40px;
  padding:60px 0;
  border-top:1px solid rgba(0,0,0,.12);
  color:#111;
  transition:.4s ease;
}

.project-item:last-child{
  border-bottom:1px solid rgba(0,0,0,.12);
}

.project-thumb{
  position:relative;
  overflow:hidden;
  border-radius:28px;
}

.project-thumb img{
  width:100%;
  height:620px;
  object-fit:cover;
  transition:transform .8s cubic-bezier(.19,1,.22,1);
}

.project-item:hover img{
  transform:scale(1.04);
}

.project-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.project-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:26px;
}

.project-tags span{
  padding:8px 16px;
  border:1px solid #111;
  border-radius:100px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.04em;
}

.project-content h2{
  font-size:clamp(46px,7vw,120px);
  line-height:.9;
  letter-spacing:-.08em;
  margin-bottom:24px;
  font-weight:900;
}

.project-content p{
  max-width:520px;
  font-size:20px;
  line-height:1.6;
  color:rgba(0,0,0,.7);
}

.project-item:hover .project-content h2{
  transform:translateX(10px);
  transition:.5s cubic-bezier(.19,1,.22,1);
}

@media(max-width:991px){

  .projects-hero{
    padding:180px 0 80px;
  }

  .projects-hero h1{
    font-size:82px;
  }

  .projects-hero p{
    font-size:20px;
  }

  .project-item{
    grid-template-columns:1fr;
    gap:30px;
    padding:40px 0;
  }

  .project-thumb img{
    height:420px;
  }

  .project-content h2{
    font-size:62px;
  }

  .project-content p{
    font-size:18px;
  }

}



.case-hero{
  padding:220px 0 120px;
  background:#f3f0ea;
  color:#111;
}

.case-hero span{
  display:block;
  font-size:13px;
  letter-spacing:.14em;
  font-weight:800;
  color:rgba(0,0,0,.45);
  margin-bottom:30px;
}

.case-hero h1{
  font-size:clamp(80px,12vw,220px);
  line-height:.96;
  letter-spacing:-.06em;
  margin-bottom:40px;
  font-weight:900;
}

.case-hero p{
  max-width:760px;
  font-size:28px;
  line-height:1.5;
  color:rgba(0,0,0,.7);
}

.case-banner img{
  width:100%;
  height:100vh;
  object-fit:cover;
}

.case-info{
  padding:60px 0;
  border-top:1px solid rgba(0,0,0,.12);
  border-bottom:1px solid rgba(0,0,0,.12);
}

.case-info-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.case-info-grid span{
  display:block;
  font-size:12px;
  letter-spacing:.14em;
  font-weight:800;
  color:rgba(0,0,0,.45);
  margin-bottom:12px;
}

.case-info-grid p{
  font-size:22px;
  line-height:1.6;
}

.case-text{
  padding:140px 0;
}

.case-text h2{
  font-size:clamp(42px,6vw,90px);
  line-height:.95;
  letter-spacing:-.07em;
  margin-bottom:40px;
  font-weight:900;
}

.case-text p{
  font-size:24px;
  line-height:1.7;
  color:rgba(0,0,0,.7);
  margin-bottom:24px;
}

.case-gallery{
  padding-bottom:140px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.gallery-grid img{
  width:100%;
  height:760px;
  object-fit:cover;
  border-radius:26px;
  transition:transform 1s cubic-bezier(.19,1,.22,1), opacity .8s ease;
  will-change:transform;
}

.gallery-grid img:hover{
   transform:scale(1);

}

.gallery-grid img:nth-child(2){
  margin-top:120px;
}

.gallery-grid img:nth-child(3){
  margin-top:-70px;
}

.next-project{
  padding:120px 0;
  border-top:1px solid rgba(0,0,0,.12);
}

.next-project span{
  display:block;
  font-size:12px;
  letter-spacing:.14em;
  font-weight:800;
  margin-bottom:24px;
  color:rgba(0,0,0,.45);
}

.next-project h2{
  font-size:clamp(70px,10vw,180px);
  line-height:.96;
  letter-spacing:-.08em;
  font-weight:900;
}

@media(max-width:991px){

  .case-hero{
    padding:180px 0 80px;
  }

  .case-info-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .gallery-grid{
    grid-template-columns:1fr;
	margin-top: 1rem;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(3){
    height:420px;
    margin-top:0;
  }

  .case-banner img{
    height:70vh;
  }

}


.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:90px;
  align-items:start;
}

.contact-left h2{
  font-size: 6rem;
}

.contact-left p{
  max-width:520px;
  font-size:20px;
  line-height:1.6;
  color:rgba(255,255,255,.65);
  margin:30px 0;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  background:transparent;
  border:1px solid rgba(255,255,255,.18);
  color:#f3f0ea;
  padding:20px 22px;
  border-radius:18px;
  font-size:16px;
  outline:none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color:rgba(255,255,255,.45);
}

.contact-form select{
  color:rgba(255,255,255,.55);
}

.contact-form option{
  color:#111;
}

.contact-form textarea{
  resize:none;
}

.contact-form button{
  width:max-content;
  padding:18px 38px;
  border-radius:100px;
  border:1px solid #f3f0ea;
  background:#f3f0ea;
  color:#111;
  font-weight:800;
  cursor:pointer;
  transition:.3s ease;
}

.contact-form button:hover{
  background:transparent;
  color:#f3f0ea;
}

@media(max-width:900px){

  .contact-grid,
  .form-row{
    grid-template-columns:1fr;
  }

}

@media (max-width: 900px) {
  .site-header { padding: 22px; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 0; background: #111; color: #fff; display: none; flex-direction: column; align-items: center; justify-content: center; font-size: 38px; }
  .main-nav.open { display: flex; }
  .section-padding { padding: 70px 22px; }
  .section-padding.big { padding: 50rem 22px; }
.hero {
    justify-content: center;
}
  .hero-bottom, .section-head, .work-grid, .service-item { grid-template-columns: 1fr; display: grid; }
  .hero-bottom { align-items: start; }
  .work-image { height: 420px; }
  .work-info { display: block; }
  .work-info p { text-align: left; margin-top: 8px; }
  .service-item { gap: 16px; }
  .contact-box { padding: 38px; border-radius: none; }
  .site-footer { padding: 28px 22px; flex-direction: column; gap: 10px; }
  .cursor { display: none; }

  .contact-left h2 {
    font-size: 2rem;
}
}
