* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #171717;
}
a {
  text-decoration: none;
  color: inherit;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #fffefcf5;
  border-bottom: 1px solid #ddd;
}
.nav {
  max-width: 1280px;
  height: 78px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
/* Logo */
.logo {
  display: flex;
  align-items: left;
  justify-content: flex-start;
  margin-right: auto;
  width: 300px;
  height: 60px;
  overflow: hidden;
}

.logo img {
  max-width: 300px;
  max-height: 75px;
  width: auto;
  height: auto;
  display: block;
}

/* Tablet */
@media (max-width: 900px) {
  .logo {
    width: 180px;
    height: 60px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .logo {
    width: 300px;
    height: 45px;
  }
}

.nav nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
}
.nav button {
  display: none;
}
.btn {
  display: inline-block;
  background: #b28a4a;
  color: white;
  padding: 15px 24px;
  border: 0;
  font-weight: bold;
  cursor: pointer;
}
.outline {
  border: 1px solid white;
  padding: 14px 23px;
  font-weight: bold;
  color: white;
}
.hero {
  min-height: 760px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("images/2.png") center center / cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}
.heroText {
  max-width: 850px;
  margin: 80px auto 0;
  width: 90%;
}
.heroText span,
label {
  color: #b28a4a;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: bold;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.05;
  margin: 20px 0;
}
.hero p {
  font-size: 19px;
  line-height: 1.8;
  max-width: 700px;
  color: #eee;
}
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #ddd;
}
.trust b {
  text-align: center;
  padding: 28px;
  border-right: 1px solid #ddd;
}
.section {
  padding: 100px max(24px, calc((100% - 1280px) / 2));
}
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.two img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.section h2,
.promise h2 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  margin: 18px 0;
}
.section p,
.promise p {
  color: #666;
  line-height: 1.9;
  font-size: 17px;
}
.section i {
  display: block;
  width: 60px;
  height: 3px;
  background: #b28a4a;
  margin: 25px 0;
}
.cream {
  background: #f7f4ee;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 45px;
}
.cards article {
  background: #fff;
  padding: 35px;
  min-height: 250px;
}
.cards article > b {
  color: #b28a4a;
}
.cards h3 {
  font-size: 24px;
  margin-top: 35px;
}
.projects article {
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.cards.projects {
  grid-template-columns: repeat(2, calc((100% - 40px) / 3));
  justify-content: center;
}

.projects img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 6px;
  margin: 0 -35px 20px -35px;
  width: calc(100% + 70px);
}
.project-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.project-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid #b28a4a;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  color: #b28a4a;
  transition: 0.2s ease;
}
.project-actions a:hover {
  background: #b28a4a;
  color: #fff;
}
.project-actions a.download {
  background: #b28a4a;
  color: #fff;
}
.project-actions a.download:hover {
  background: #8f6b32;
}
.promise {
  padding: 110px max(24px, calc((100% - 1280px) / 2));
  color: #fff;
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("images/1.png") center center / cover no-repeat;
}
.promise p {
  color: #ddd;
  max-width: 700px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.gallery img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.contact form {
  display: grid;
  gap: 15px;
}
.contact input,
.contact select,
.contact textarea {
  padding: 16px;
  border: 1px solid #ccc;
  font: inherit;
}
.wa {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background: #25d366;
  color: #fff;
  padding: 15px 22px;
  border-radius: 30px;
  font-weight: bold;
  z-index: 20;
}
footer {
  background: #171717;
  color: #fff;
  padding: 55px 24px;
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
footer span {
  color: #aaa;
}
@media (max-width: 900px) {
  .nav {
    height: 70px;
    gap: 15px;
  }
  .nav nav,
  .nav > .top {
    display: none;
  }
  .nav button {
    display: block;
    background: none;
    border: 0;
    font-size: 25px;
    cursor: pointer;
  }
  .nav nav.show {
    display: flex;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 25px;
    flex-direction: column;
    gap: 15px;
    border-bottom: 1px solid #ddd;
  }
  .two {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .two img {
    height: 420px;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .cards.projects {
    grid-template-columns: 1fr 1fr;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
  .trust {
    grid-template-columns: 1fr 1fr;
  }
  .section {
    padding: 80px max(24px, calc((100% - 900px) / 2));
  }
  .projects img {
    height: 400px;
  }
  .hero {
    min-height: 600px;
  }
  .promise {
    padding: 80px max(24px, calc((100% - 900px) / 2));
  }
}

@media (max-width: 600px) {
  header {
    position: fixed;
  }
  .nav {
    height: 60px;
    padding: 0 16px;
    gap: 12px;
  }
  .logo {
    width: 150px !important;
    height: 45px !important;
  }
  .nav nav.show {
    top: 60px;
    padding: 20px 16px;
    gap: 12px;
  }
  .nav nav.show a {
    padding: 10px 0;
    font-size: 14px;
  }
  .nav button {
    font-size: 20px;
  }
  .cards,
  .gallery,
  .trust {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .cards.projects {
    grid-template-columns: 1fr;
  }
  .cards article {
    padding: 20px;
    min-height: auto;
  }
  .section {
    padding: 60px 16px;
    padding-top: 100px;
  }
  .two {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .two img {
    height: 320px;
  }
  .hero {
    min-height: 500px;
    padding-top: 80px;
  }
  .heroText {
    width: 95%;
    margin: 40px auto 0;
  }
  .hero h1 {
    font-size: 32px;
    margin: 15px 0;
  }
  .hero p {
    font-size: 16px;
  }
  .section h2,
  .promise h2 {
    font-size: clamp(28px, 5vw, 42px);
  }
  .section p,
  .promise p {
    font-size: 15px;
  }
  .cards h3 {
    font-size: 18px;
    margin-top: 15px;
  }
  .cards article > b {
    font-size: 14px;
  }
  .projects img {
    height: 520px;
    margin: 0 -20px 15px -20px;
    width: calc(100% + 40px);
  }
  .project-actions {
    flex-direction: column;
    gap: 8px;
  }
  .project-actions a {
    width: 100%;
    padding: 12px 10px;
    font-size: 13px;
  }
  .promise {
    padding: 60px 16px;
  }
  .promise p {
    color: #ddd;
    font-size: 15px;
  }
  .section i {
    margin: 18px 0;
  }
  .gallery img {
    height: 250px;
  }
  .contact form {
    gap: 12px;
  }
  .contact input,
  .contact select,
  .contact textarea {
    padding: 14px;
    font-size: 16px;
  }
  .trust b {
    padding: 16px;
    font-size: 13px;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }
  footer {
    padding: 40px 16px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  footer b {
    font-size: 16px;
  }
  footer span {
    font-size: 13px;
  }
  .wa {
    right: 15px;
    bottom: 15px;
    padding: 12px 16px;
    font-size: 13px;
  }
}
