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

body{

font-family:Arial, Helvetica, sans-serif;

background:#EFEAE4;

color:#222;

}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    height: 180px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 55px;

    background: rgba(239,234,228,.95);
    backdrop-filter: blur(12px);

    z-index: 1000;
}

.logo{
  display:flex;
  align-items:flex-start;
    margin-left: -150px;
}

.logo img{
  width:400px;
  height:auto;
  object-fit:contain;
  display:block;
}

nav{
  display:flex;
  gap:40px;
  padding-top:20px;
}

nav a{

text-decoration:none;

color:#222;

font-size:15px;

}

.hero{
  min-height:calc(100vh - 90px);
  display:flex;
  align-items:flex-start;
  padding:100px 55px 0 55px;
  padding-top:140px;
}

.hero-content p{

font-size:14px;

letter-spacing:4px;

text-transform:uppercase;

margin-bottom:25px;

}

.hero-content h1{

font-size:110px;

line-height:0.9;

font-weight:500;

max-width:700px;

}
.hero-description{

    width:430px;

    margin-top:40px;

    font-size:18px;

    line-height:1.8;

    color:#666;

}

.hero-links{

    display:flex;

    gap:35px;

    margin-top:45px;

}

.hero-links a{

    color:#111;

    text-decoration:none;

    font-size:16px;

    border-bottom:1px solid #111;

    padding-bottom:6px;

    transition:.35s;

}

.hero-links a:hover{

    transform:translateY(-3px);

}

body{
    margin: 0;
    padding-top: 90px;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--background);
    color: var(--text);
}

.projects-section,
.about-section,
.services-section,
.contact-section{
  padding:120px 55px;
}

.section-heading{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-bottom:60px;
}

.section-heading p,
.about-section p,
.contact-section p{
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:13px;
  color:#666;
}

.section-heading h2{
  font-size:54px;
  font-weight:500;
}

.projects-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.project-card{
  overflow:hidden;
}

.project-card img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  display:block;
  transition:.6s ease;
}

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

.project-info{
  padding-top:22px;
}

.project-info h3{
  font-size:25px;
  font-weight:500;
  margin-bottom:8px;
}

.project-info p{
  color:#666;
}

.about-section{
  background:#111;
  color:white;
}

.about-section p{
  color:#aaa;
  margin-bottom:35px;
}

.about-section h2{
  max-width:1050px;
  font-size:58px;
  line-height:1.15;
  font-weight:400;
}

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

.services-grid div{
  border-top:1px solid #222;
  padding-top:28px;
}

.services-grid span{
  color:#8C7A67;
}

.services-grid h3{
  font-size:28px;
  margin:24px 0 16px;
  font-weight:500;
}

.services-grid p{
  color:#666;
  line-height:1.8;
}

.contact-section{
  min-height:60vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.contact-section h2{
  font-size:64px;
  font-weight:400;
  margin:30px 0;
}

.contact-section a{
  color:#111;
  font-size:22px;
  text-decoration:none;
  border-bottom:1px solid #111;
  width:max-content;
}