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

html {
  scroll-behavior: smooth;
}

body {
  background: #132C44;
  color: #F1E5D0;
  font-family: "Bodoni Moda", serif;
  line-height: 1.7;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  padding: 0 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(8, 18, 28, 0.62);
  backdrop-filter: blur(14px);
}

.logo-link {
  display: flex;
  align-items: center;
}

.site-logo {
  height: 90px;
  width: auto;
  display: block;
}

.site-nav a {
  color: #F1E5D0;
  text-decoration: none;
  margin-left: 34px;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero {
  min-height: 100vh;
  background-image:
    linear-gradient(rgba(5, 10, 15, 0.32), rgba(5, 10, 15, 0.58)),
    url("nimbus-kitchen.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 24px 70px;
}

.hero-content {
  max-width: 760px;
  padding: 24px 32px;
  background: rgba(5, 12, 18, 0.28);
}

.hero h1 {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 24px;
  color: #F1E5D0;
}

.hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  color: #EFE6D8;
}

.btn {
  display: inline-block;
  margin-top: 34px;
  padding: 15px 34px;
  border: 1px solid #D7B47D;
  color: #132C44;
  background: #D7B47D;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
}

.about-section {
  background: #F1E5D0;
  color: #132C44;
  padding: 78px 9%;
}

.about {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: 70px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.about h2,
.section-heading h2,
.moodboard-content h2,
.contact-section h2 {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 34px;
}

.about p {
  font-size: 16px;
  margin-bottom: 18px;
  color: #20384B;
  max-width: 620px;
}

.about-image img {
  width: 100%;
  max-width: 370px;
  display: block;
  margin-left: auto;
  filter: grayscale(100%);
}

.manifesto {
  background: #102638;
  text-align: center;
  padding: 92px 9%;
}

.manifesto h2 {
  max-width: 980px;
  margin: 0 auto;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.14;
  color: #F1E5D0;
}

.manifesto span {
  color: #D7B47D;
  font-style: italic;
}

.projects-section {
  background: #08141E;
  padding: 86px 9%;
}

.section-heading {
  max-width: 1180px;
  margin: 0 auto 44px;
}

.projects-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.project-card {
  background: #132C44;
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
}

.project-card div {
  padding: 26px 26px 30px;
}

.project-card h3 {
  font-family: "Bodoni Moda", serif;
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 14px;
  color: #D8CABC;
}

.moodboard-section {
  background: #F1E5D0;
  color: #132C44;
  padding: 82px 9%;
}

.moodboard-content {
  max-width: 1180px;
  margin: 0 auto;
}

.moodboard-content p {
  max-width: 720px;
  margin-bottom: 40px;
  color: #20384B;
}

.moodboard-content img {
  width: 100%;
  display: block;
}

.contact-section {
  background: #102638;
  text-align: center;
  padding: 80px 9%;
}

.contact-section p {
  color: #EFE6D8;
  margin-bottom: 24px;
}

.contact-section a {
  display: block;
  color: #D7B47D;
  text-decoration: none;
  font-size: 18px;
  margin: 12px 0;
}
.contact-label{
    margin-top:50px;
    margin-bottom:14px;
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#D7B47D;
}

.contact a{
    font-size:22px;
}
}
footer {
  padding: 34px;
  text-align: center;
  background: #061019;
  color: #9D8F7D;
  font-size: 12px;
  letter-spacing: 3px;
}

@media (max-width: 900px) {
  .site-header {
    height: 72px;
    padding: 0 22px;
  }

  .site-logo {
    height: 52px;
  }

  .site-nav {
    display: none;
  }

  .hero-content {
    padding: 34px 24px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-image img {
    margin: 0;
    max-width: 320px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card img {
    height: 280px;
  }

  .manifesto {
    padding: 76px 7%;
  }
}
.project-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.project-link,
.project-link:visited,
.project-link:hover,
.project-link:active {
  color: inherit;
  text-decoration: none;
}

.project-link h3,
.project-link p {
  color: inherit;
  text-decoration: none;
}
