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

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#f6f1e9;
  color:#1f1f1f;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:24px 48px;
  position:sticky;
  top:0;
  background:rgba(246,241,233,0.9);
  backdrop-filter:blur(10px);
}

.logo{
  color:#d85a34;
}

.links{
  display:flex;
  gap:24px;
}

.links a{
  text-decoration:none;
  color:#1f1f1f;
  font-weight:bold;
}

.hero{
  min-height:85vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:40px;
}

.hero h1{
  font-size:clamp(70px,12vw,150px);
  line-height:0.9;
}

.hero h1 span{
  color:#d85a34;
}

.small{
  letter-spacing:4px;
  margin-bottom:24px;
  color:#d85a34;
}

.intro{
  max-width:700px;
  margin:30px auto;
  font-size:20px;
  line-height:1.6;
}

.button{
  display:inline-block;
  padding:16px 34px;
  background:#d85a34;
  color:white;
  border-radius:999px;
  text-decoration:none;
}

.section{
  padding:100px 40px;
  max-width:1200px;
  margin:auto;
}

.section h2{
  font-size:48px;
  margin-bottom:40px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:24px;
}

.card{
  background:white;
  padding:30px;
  border-radius:24px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.page-header{
  padding:120px 40px 40px;
  text-align:center;
}

.page-header h1{
  font-size:70px;
  margin-bottom:20px;
}

.projects{
  max-width:1200px;
  margin:auto;
  padding:40px;
  display:flex;
  flex-direction:column;
  gap:40px;
}

.project-card{
  background:white;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.project-card img{
  width:100%;
  display:block;
}

.project-info{
  padding:30px;
}

.project-info h2{
  margin-bottom:16px;
}

.project-info p{
  line-height:1.7;
  margin-bottom:20px;
}

.project-info a{
  text-decoration:none;
  color:#d85a34;
  font-weight:bold;
}

.narrow{
  max-width:800px;
}

.contact-box{
  background:white;
  padding:40px;
  border-radius:24px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.footer{
  padding:40px;
  text-align:center;
}