:root {
  --yellow: #f5c62e;
  --beige: #f7f1e1;
  --lightblue: #a0d8ef;
  --brown: #8c593e;
  --white: #fff;
  --font: 'Helvetica Neue', Arial, sans-serif;
}
* {
  margin: 0; padding: 0;
  box-sizing: border-box;
  font-family: var(--font);
}
body {
  background: var(--white);
  color: var(--brown);
  line-height: 1.6;
}
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: var(--beige);
  position: sticky;
  top: 0;
  z-index: 10;
}
.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.navbar nav a {
  text-decoration: none;
  color: var(--brown);
  font-weight: bold;
}
.hero {
  height: 100vh;
  background: linear-gradient(135deg, var(--yellow), var(--beige));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}
.hero h1 {
  font-size: 3rem;
}
.subtitle {
  font-size: 1.5rem;
  margin: 1rem 0;
}
.subtitle span {
  color: var(--lightblue);
}
.btn {
  background: var(--brown);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}
.btn:hover {
  background: var(--yellow);
  color: var(--brown);
}
.section {
  padding: 4rem 2rem;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.card {
  padding: 2rem;
  border-radius: 15px;
  background: var(--beige);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-size: 1.25rem;
  position: relative;
  overflow: hidden;
}
.card.honey::after {
  content: "";
  position: absolute;
  top: -30px; left: -30px;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left, rgba(245,198,46,0.4), transparent);
  transform: rotate(45deg);
}
.contact-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 2px solid var(--lightblue);
  border-radius: 5px;
  font-family: var(--font);
}
footer {
  background: var(--beige);
  text-align: center;
  padding: 1rem;
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .subtitle { font-size: 1.25rem; }
}

.subtitle span {
  color: var(--lightblue);
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
