* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #151515;
  background: #ffffff;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  border-bottom: 1px solid #e8e8e8;
}
.nav {
  max-width: 1180px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 1px;
}
.logo span {
  font-weight: 400;
}
nav {
  display: flex;
  gap: 28px;
}
nav a {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
nav a:hover,
nav a.active {
  border-color: #111;
}
.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 25px;
}
.hero {
  max-width: 1180px;
  margin: auto;
  padding: 85px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -2px;
  margin: 0 0 22px;
}
.hero-text > p:not(.eyebrow) {
  font-size: 19px;
  max-width: 600px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 14px;
}
.buttons {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.btn {
  display: inline-block;
  background: #111;
  color: white;
  padding: 14px 24px;
  border: 1px solid #111;
  border-radius: 3px;
  font-weight: 700;
  cursor: pointer;
}
.btn:hover {
  opacity: .8;
}
.btn.outline {
  background: white;
  color: #111;
}
.photo {
  background: #f1f1f1;
  min-height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo span {
  display: none;
  color: #777;
  font-size: 12px;
  letter-spacing: 1px;
}
.photo:has(img[src=""]) span,
.photo img:not([src]) + span {
  display: block;
}
.large-photo {
  min-height: 520px;
}
.section {
  max-width: 1180px;
  margin: auto;
  padding: 80px 24px;
}
.heading {
  margin-bottom: 35px;
}
.heading h2 {
  font-size: 40px;
  line-height: 1.1;
  margin: 0;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  border: 1px solid #e4e4e4;
  padding: 30px;
}
.card h3 {
  margin-top: 0;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery .photo {
  min-height: 360px;
}
.cta {
  max-width: 1130px;
  margin: 20px auto 80px;
  padding: 55px 45px;
  background: #111;
  color: white;
}
.cta h2 {
  font-size: 40px;
  margin: 0 0 10px;
}
.page-header {
  max-width: 1180px;
  margin: auto;
  padding: 80px 24px 45px;
}
.page-header h1 {
  font-size: clamp(42px, 6vw, 65px);
  line-height: 1;
  margin: 0 0 20px;
}
.page-header > p:last-child {
  font-size: 18px;
  max-width: 650px;
}
.products {
  max-width: 1180px;
  margin: auto;
  padding: 20px 24px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product {
  border: 1px solid #ddd;
  padding-bottom: 25px;
}
.product .photo {
  min-height: 300px;
}
.product h2,
.product p,
.product ul {
  margin-left: 25px;
  margin-right: 25px;
}
.product h2 {
  margin-top: 25px;
}
.about-section {
  max-width: 1180px;
  margin: auto;
  padding: 30px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-section h2 {
  font-size: 40px;
  line-height: 1.1;
}
.about-section p {
  font-size: 17px;
}
.about-photo {
  min-height: 520px;
}
.stats {
  max-width: 1132px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.stats div {
  padding: 28px;
  border-right: 1px solid #ddd;
}
.stats div:last-child {
  border-right: none;
}
.stats strong,
.stats span {
  display: block;
}
.stats strong {
  font-size: 23px;
}
.contact-section {
  max-width: 1132px;
  margin: auto;
  padding: 25px 24px 90px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 25px;
}
form {
  border: 1px solid #ddd;
  padding: 30px;
}
label {
  display: block;
  font-weight: 700;
  margin-bottom: 18px;
}
input,
textarea {
  width: 100%;
  display: block;
  margin-top: 7px;
  padding: 13px;
  border: 1px solid #ccc;
  font: inherit;
}
textarea {
  resize: vertical;
}
.contact-info {
  border: 1px solid #ddd;
  padding: 30px;
  height: fit-content;
}
.contact-info h2 {
  margin-top: 0;
}
.whatsapp {
  margin: 10px 0 25px;
}
.thank-you {
  max-width: 800px;
  margin: auto;
  text-align: center;
  padding: 140px 24px;
}
.thank-you h1 {
  font-size: 60px;
  margin: 0;
}
footer {
  background: #f3f3f3;
  padding: 40px max(24px, calc((100% - 1132px) / 2));
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 14px;
}
footer p {
  margin: 5px 0;
}
@media (max-width: 800px) {
  nav {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .nav.open nav {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 65px;
    padding: 20px 24px;
    background: white;
    flex-direction: column;
    gap: 12px;
    border-bottom: 1px solid #ddd;
  }
  .hero,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 50px;
  }
  .hero h1,
  .page-header h1 {
    font-size: 45px;
  }
  .cards,
  .gallery,
  .products {
    grid-template-columns: 1fr;
  }
  .large-photo {
    min-height: 380px;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .stats div:nth-child(2) {
    border-right: none;
  }
  .stats div {
    border-bottom: 1px solid #ddd;
  }
  .cta {
    margin: 10px 24px 60px;
    padding: 35px 25px;
  }
  .cta h2 {
    font-size: 30px;
  }
  footer {
    flex-direction: column;
  }
}