:root {
  --primary: #6D4C41;
  --primary-dark: #4E342E;
  --accent: #AA7A34;
  --background: #FAF7F2;
  --text: #2E2E2E;
  --muted: #666;
  --card: #FFFFFF;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--background);
  color: var(--text);
}

.topbar {
  height: 72px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}

.logo-icon {
  font-size: 26px;
}

.topbar-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.hero {
  padding: 70px 6%;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: #EFE3D4;
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  margin: 0 0 20px;
  color: var(--primary-dark);
}

.hero p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 15px 24px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 1px solid #E1D5C8;
}

.hero-image img,
.product-preview img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(80, 48, 31, 0.18);
}

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

.section h2,
.product-preview h2,
.cta h2 {
  font-size: 36px;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 34px;
  line-height: 1.6;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}

.card {
  background: var(--card);
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(80, 48, 31, 0.08);
}

.card h3 {
  margin-top: 0;
  color: var(--primary);
}

.card p {
  color: var(--muted);
  line-height: 1.5;
}

.product-preview {
  margin: 30px 6%;
  padding: 44px;
  background: white;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.product-preview p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 18px;
}

.cta {
  margin: 70px 6%;
  padding: 60px 20px;
  background: var(--primary);
  color: white;
  border-radius: 28px;
  text-align: center;
}

.cta h2 {
  color: white;
}

.cta p {
  margin-bottom: 28px;
  opacity: 0.9;
}

footer {
  text-align: center;
  padding: 28px;
  color: #777;
  font-size: 14px;
}

.logo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 900px) {
  .hero,
  .product-preview {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .topbar {
    padding: 0 20px;
  }
}