html {
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: #FAF7F2;
  color: #444444;
  line-height: 1.7;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1240px;
  margin: auto;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #E7E5E4;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  position: relative;
}

/* LOGO */

.logo img {
  height: 52px;
  width: auto;
}

/* NAVIGATION */

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #444444;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #D97706;
}

/* MOBILE MENU */

.menu-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 30px;
  cursor: pointer;
  color: #111111;
}

/* HERO */

.hero {
  padding: 110px 0 100px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.hero-text {
  max-width: 620px;
}

.hero-tag {
  display: inline-block;
  background: rgba(217, 119, 6, 0.08);
  color: #D97706;
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 13px;
  margin-bottom: 26px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-text h1 {
  font-size: 60px;
  line-height: 1.08;
  color: #111111;
  margin-bottom: 24px;
  letter-spacing: -2px;
  font-weight: 600;
}

.hero-text p {
  font-size: 17px;
  color: #555555;
  margin-bottom: 34px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 34px;
}

.primary-btn {
  display: inline-block;
  background: #D97706;
  color: white;
  padding: 15px 30px;
  border-radius: 14px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
  font-size: 14px;
}

.primary-btn:hover {
  background: #C26D3A;
}

.secondary-btn {
  display: inline-block;
  border: 1px solid #D6D3D1;
  color: #111111;
  padding: 15px 30px;
  border-radius: 14px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
  font-size: 14px;
}

.secondary-btn:hover {
  border-color: #D97706;
  color: #D97706;
}

.hero-points {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: #666666;
  font-size: 13px;
  font-weight: 500;
}

.hero-image img {
  border-radius: 32px;
  height: 620px;
  object-fit: cover;
}

/* SECTION */

section {
  padding: 110px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 42px;
  color: #111111;
  margin-bottom: 14px;
  letter-spacing: -1px;
  font-weight: 600;
}

.section-title p {
  color: #666666;
  font-size: 15px;
  max-width: 700px;
  margin: auto;
}

/* ABOUT / MISSION */

.about-section {
  padding-top: 40px;
}

.about-box {
  max-width: 1000px;
  margin: auto;
}

.mission-text {
  max-width: 920px;
  margin: auto;
  text-align: center;
  font-size: 20px;
  line-height: 2;
  color: #666666;
  font-weight: 400;
  letter-spacing: -0.2px;
}

.mission-text strong {
  color: #111111;
  font-weight: 600;
}

/* SERVICES */

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

.service-card {
  background: white;
  padding: 36px;
  border-radius: 28px;
  border: 1px solid #E7E5E4;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  color: #111111;
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 600;
}

.service-card p {
  font-size: 15px;
  line-height: 1.8;
}

/* OWNERS */

.owners-section {
  padding-top: 30px;
}

.owners-box {
  background: white;
  border-radius: 36px;
  padding: 80px;
  border: 1px solid #E7E5E4;
}

.small-tag {
  display: inline-block;
  background: rgba(194, 109, 58, 0.1);
  color: #C26D3A;
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 13px;
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.owners-box h2 {
  font-size: 48px;
  line-height: 1.15;
  color: #111111;
  margin-bottom: 24px;
  letter-spacing: -1px;
  font-weight: 600;
  max-width: 820px;
}

.owners-box p {
  max-width: 760px;
  margin-bottom: 34px;
  font-size: 16px;
}

.owners-list {
  padding-left: 18px;
  margin-bottom: 40px;
}

.owners-list li {
  margin-bottom: 14px;
  font-size: 15px;
}

/* FAQ */

.faq-section {
  padding-top: 30px;
}

.faq-container {
  max-width: 920px;
  margin: auto;
}

.faq-item {
  background: white;
  border: 1px solid #E7E5E4;
  border-radius: 22px;
  margin-bottom: 18px;
  overflow: hidden;
  transition: 0.3s;
}

.faq-item.active {
  border-color: #D97706;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 30px;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  color: #111111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-weight: 500;
}

.faq-question span {
  color: #D97706;
  font-size: 22px;
}

.faq-answer {
  display: none;
  padding: 0 30px 28px;
}

.faq-answer p {
  color: #555555;
  line-height: 1.8;
  font-size: 15px;
}

.faq-item.active .faq-answer {
  display: block;
}

/* CONTACT */

.contact-box {
  background: #111111;
  color: white;
  text-align: center;
  padding: 90px 30px;
  border-radius: 36px;
}

.contact-box h2 {
  font-size: 48px;
  margin-bottom: 16px;
  letter-spacing: -1px;
  font-weight: 600;
}

.contact-box p {
  margin-bottom: 36px;
  color: #D6D3D1;
  font-size: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* FOOTER */

.footer {
  padding: 36px 0;
  border-top: 1px solid #E7E5E4;
}

.footer-content {
  text-align: center;
  color: #666666;
  font-size: 14px;
}

/* TABLET */

@media(max-width: 992px) {

  .hero-content,
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

}

/* MOBILE */

@media(max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background: #FAF7F2;
    border: 1px solid #E7E5E4;
    border-radius: 18px;
    padding: 24px;
    display: none;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
  }

  .hero-content,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 70px 0;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .section-title h2,
  .owners-box h2,
  .contact-box h2 {
    font-size: 32px;
  }

  .mission-text {
    font-size: 18px;
    line-height: 1.9;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .owners-box {
    padding: 42px 28px;
  }

  .hero-image img {
    height: auto;
  }

  .faq-question {
    font-size: 15px;
    padding: 22px;
  }

  .faq-answer {
    padding: 0 22px 24px;
  }

}