:root {
  --bg: #faf7f2;
  --card: #ffffff;
  --text: #2b2620;
  --muted: #7a7264;
  --accent: #a8714f;
  --accent-dark: #8a5a3d;
  --sage: #7c8d6e;
  --sand: #d9c7a8;
  --clay: #c98a63;
  --line: rgba(43, 38, 32, 0.08);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, .nav-logo { font-family: 'Fraunces', Georgia, serif; }

a { color: inherit; }

.demo-banner {
  background: var(--accent);
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  padding: 0.6rem 1rem;
}
.demo-banner a { color: #fff; text-decoration: underline; font-weight: 600; }

/* Nav */
.navbar {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--line);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo { font-size: 1.4rem; font-weight: 600; }
.nav-menu { display: flex; list-style: none; gap: 2rem; }
.nav-link { text-decoration: none; font-weight: 500; color: var(--text); transition: color .2s; }
.nav-link:hover { color: var(--accent); }
.nav-cta {
  text-decoration: none;
  border: 1px solid var(--text);
  padding: 0.5rem 1.1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all .2s;
}
.nav-cta:hover { background: var(--text); color: #fff; }

/* Hero */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero-sub { color: var(--muted); font-size: 1.05rem; max-width: 40ch; margin-bottom: 1.75rem; }

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  border-radius: 2rem;
  font-weight: 600;
  transition: all .2s;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }

.hero-art { position: relative; height: 320px; }
.hero-shape { position: absolute; border-radius: 50%; }
.shape-1 { width: 220px; height: 220px; background: var(--clay); opacity: .25; top: 10px; right: 40px; }
.shape-2 { width: 160px; height: 160px; background: var(--sage); opacity: .3; bottom: 20px; right: 120px; }
.shape-3 { width: 100px; height: 100px; background: var(--sand); opacity: .5; top: 100px; right: 0; }

/* Strip */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 1.1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.strip-item span { color: var(--text); font-weight: 600; }

/* Shop */
.shop { max-width: 1200px; margin: 0 auto; padding: 4rem 1.5rem; }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head h2 { font-size: 2.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.section-head p { color: var(--muted); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}
.product-card {
  background: var(--card);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(43, 38, 32, 0.06);
  transition: transform .25s, box-shadow .25s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 14px 28px rgba(43, 38, 32, 0.1); }

.product-image {
  position: relative;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swatch-clay { background: linear-gradient(135deg, #e8b998, #c98a63); color: #7a4b2e; }
.swatch-sand { background: linear-gradient(135deg, #f0e6d2, #d9c7a8); color: #8a7650; }
.swatch-sage { background: linear-gradient(135deg, #c3cfb6, #7c8d6e); color: #45502f; }
.product-icon { width: 70px; height: 70px; opacity: 0.85; }

.badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(255,255,255,0.85);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: 1rem;
}

.product-info { padding: 1.25rem; }
.product-info h3 { font-size: 1.02rem; font-weight: 600; margin-bottom: 0.4rem; }
.product-desc { font-size: 0.88rem; color: var(--muted); margin-bottom: 1rem; }
.product-row { display: flex; align-items: center; justify-content: space-between; }
.price { font-weight: 700; font-size: 1.05rem; }
.btn-add {
  background: none;
  border: 1px solid var(--text);
  padding: 0.45rem 0.9rem;
  border-radius: 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.btn-add:hover { background: var(--text); color: #fff; }

/* About */
.about { background: var(--card); padding: 4.5rem 1.5rem; }
.about-content { max-width: 640px; margin: 0 auto; text-align: center; }
.about-content h2 { font-size: 2rem; font-weight: 600; margin: 0.75rem 0 1.25rem; }
.about-content p { color: var(--muted); font-size: 1.02rem; }

/* Contact */
.contact { padding: 4.5rem 1.5rem; text-align: center; }
.contact h2 { font-size: 2rem; font-weight: 600; margin-bottom: 0.5rem; }
.contact p { color: var(--muted); margin-bottom: 1.75rem; }

/* Footer */
.footer {
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.footer a { color: var(--accent); font-weight: 600; text-decoration: none; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 3rem; }
  .hero-art { height: 200px; order: -1; }
  .hero h1 { font-size: 2.3rem; }
}
