:root {
  color-scheme: light;
  --bg: #f7f1e8;
  --surface: #fffdf9;
  --text: #2f2a24;
  --muted: #6f675f;
  --accent: #a56c3d;
  --border: #e7dccf;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg), #fdf7ef 100%);
  line-height: 1.6;
}
img { display: block; width: 100%; height: auto; object-fit: cover; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(247, 241, 232, 0.85);
  border-bottom: 1px solid var(--border);
  z-index: 20;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 24px; color: var(--muted); }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 1.4rem; }
.hero { padding: 72px 0 56px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}
h1, h2, h3 { line-height: 1.2; margin-top: 0; }
h1 { font-size: clamp(2rem, 3.8vw, 3.2rem); margin-bottom: 14px; }
.hero-copy p { color: var(--muted); font-size: 1rem; }
.hero-actions { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--text); color: #fff; }
.btn-secondary { border: 1px solid var(--border); background: rgba(255,255,255,0.6); }
.hero-visual img {
  border-radius: 24px;
  min-height: 420px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}
.section { padding: 40px 0 56px; }
.section-heading { margin-bottom: 24px; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.category-grid article, .product-card, .quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.product-card { padding: 0; overflow: hidden; }
.product-card img { height: 240px; }
.product-info { padding: 18px 20px 22px; }
.product-info span { color: var(--accent); font-weight: 600; }
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}
.quote-card {
  font-size: 1.15rem;
  font-weight: 600;
  background: linear-gradient(135deg, #fffdf9, #efe2d0);
}
.footer {
  padding: 30px 0 48px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.5);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}
@media (max-width: 860px) {
  .hero-grid, .story-grid, .product-grid, .category-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .menu-toggle { display: inline-block; }
  .nav-wrap.active .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 16px;
    top: 60px;
    background: var(--surface);
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
  }
}
