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

body {
  font-family: "Segoe UI", Arial, sans-serif;
}

/* ---------- Navbar ---------- */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.logo-mark {
  width: 28px;
  height: 28px;
  background: #1a1a1a;
  clip-path: polygon(0% 100%, 35% 100%, 100% 0%, 65% 0%);
}

.nav-links {
  display: flex;
  gap: 36px;
  margin-left: auto;
  margin-right: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 16px;
  padding-bottom: 6px;
}

.nav-links a.active {
  border-bottom: 2px solid #d9622b;
}

.btn-contact {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 15px;
  padding: 8px 18px;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 60px 40px;
  background:
    linear-gradient(0deg, rgba(20, 15, 10, 0.55) 0%, rgba(20, 15, 10, 0.05) 45%),
    linear-gradient(180deg, #b9b3ae 0%, #c9a98a 30%, #d8a25f 55%, #7c6a3f 75%, #4c5a2c 100%);
  background-blend-mode: normal;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45) 0%, transparent 60%);
}

.hero-title {
  position: relative;
  color: #ffffff;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 20px;
  }

  .nav-links {
    gap: 20px;
    margin-right: 20px;
  }

  .hero-title {
    font-size: 36px;
  }
}
