body {
  margin: 0;
  font-family: "Helvetica Neue", Arial;
  background: #F7F3EE;
  color: #111;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 25px 60px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
}

.nav .logo {
  letter-spacing: 3px;
  font-weight: 600;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #111;
  font-size: 13px;
}

.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("https://images.unsplash.com/photo-1520975916090-3105956dac38") center/cover;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
}

.hero-text {
  position: relative;
  color: white;
}

.hero h1 {
  font-size: 48px;
  letter-spacing: 2px;
}

.hero button {
  margin-top: 20px;
  padding: 12px 28px;
  border: 1px solid white;
  background: transparent;
  color: white;
  cursor: pointer;
}

.section {
  padding: 80px 60px;
  text-align: center;
}

.section h2 {
  letter-spacing: 2px;
  font-size: 22px;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  text-align: left;
}

.card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: 0.4s;
}

.card img:hover {
  transform: scale(1.03);
}

.card h3 {
  margin: 10px 0 5px;
  font-size: 16px;
}

.card p {
  color: #555;
}

.split {
  display: flex;
  height: 60vh;
  margin-top: 80px;
}

.left {
  flex: 1;
  background: url("https://images.unsplash.com/photo-1483985988355-763728e1935b") center/cover;
}

.right {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

footer {
  text-align: center;
  padding: 40px;
  font-size: 12px;
}
