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

html {
  color-scheme: light;
  --accent: #b8935a;
  --accent-dark: #9c7943;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
}

.site-header nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #1a1a1a;
}

.site-header nav a:hover {
  color: var(--accent-dark);
}

.hero {
  padding: 100px 0;
  text-align: center;
  background: #fafafa;
}

.hero h1 {
  font-size: 2.75rem;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 28px;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
}

.btn:hover {
  background: var(--accent-dark);
}

.section {
  padding: 64px 0;
  border-bottom: 1px solid #eee;
}

.section h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.product-grid .product-card:only-child {
  max-width: 340px;
}

.product-card {
  border: 1px solid #e5e5e5;
  border-top: 3px solid var(--accent);
  border-radius: 8px;
  padding: 20px;
}

.product-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.product-card p {
  color: #555;
  font-size: 0.95rem;
}

.badge {
  display: inline-block;
  background: #f0f0f0;
  color: #555;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

#contact a {
  color: #1a1a1a;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
}

#contact a:hover {
  color: var(--accent-dark);
  border-bottom-color: var(--accent-dark);
}

.site-footer {
  padding: 32px 0;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .site-header nav a {
    margin-left: 0;
    margin-right: 16px;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 40px 0;
  }

  .section h2 {
    font-size: 1.5rem;
  }
}
