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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Nav */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #8B4513;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover { color: #8B4513; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #f5e6d3 0%, #e8d5b7 100%);
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  color: #5C3317;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  color: #8B6914;
  max-width: 500px;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #8B4513;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139,69,19,0.3);
}

/* Sections */
section { padding: 5rem 2rem; }

h2 {
  font-size: 2rem;
  text-align: center;
  color: #5C3317;
  margin-bottom: 2rem;
}

.about {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about p {
  font-size: 1.1rem;
  color: #666;
}

/* Products */
.products { background: #faf5ef; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  text-align: center;
}

.card h3 {
  color: #8B4513;
  margin-bottom: 0.5rem;
}

.card p { color: #777; }

/* Contact */
.contact {
  text-align: center;
  background: #5C3317;
  color: white;
}

.contact h2 { color: white; }
.contact p { margin-bottom: 0.5rem; opacity: 0.9; }

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: #3a1f0d;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

footer a { color: rgba(255,255,255,0.8); }

/* Mobile */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  nav ul { gap: 1rem; }
  nav { padding: 1rem; }
}
