:root {
  --brand: #b85a2b;       /* deep spice color for headings/buttons */
  --muted: #6b6b6b;       /* for secondary text */
  --bg: #f8f5e6;          /* warm beige background */
  --hero-bg-opacity: 0.5; /* for semi-transparent text boxes */
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: #222;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
  position: sticky;
  top: 0;
  z-index: 40;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 18px; }

.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; display: block; }
.brand h1 { font-size: 20px; margin: 0; color: var(--brand); }
nav a {
  color: #333;
  text-decoration: none;
  margin-left: 18px;
  font-weight: 600;
  transition: 0.3s;
}
nav a:hover { color: var(--brand); }

.hero, .products-hero, .shop-hero, .team-hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-inner {
  padding: 60px 20px;
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero-inner h2, .hero-inner h3 {
  font-size: 44px;
  margin: 12px 0 8px;
  color: #222;
  background-color: rgba(255,255,255,0.7); /* semi-transparent box */
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
}

.hero-inner p, .hero-inner .lead {
  font-size: 18px;
  line-height: 1.5;
  color: #222;
  background-color: rgba(255,255,255,0.6);
  padding: 8px 12px;
  border-radius: 6px;
  margin-top: 8px;
}

.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 12px;
  transition: 0.3s;
}

.btn:hover {
  background: #933d1f;
}

section {
  padding: 56px 0;
  background: var(--bg);
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* responsive */
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  color: #222;
  transition: 0.3s;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.card strong { color: var(--brand); }

.price { font-weight: 800; color: var(--brand); font-size: 20px; margin-top: 8px; }

footer {
  background: #f5f2e8;
  color: #444;
  padding: 28px 0;
  margin-top: 40px;
  font-size: 14px;
}

.muted { color: var(--muted); }

/* ------------------- MOBILE RESPONSIVE ------------------- */
@media(max-width:900px){
  .three { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width:640px){
  .hero, .products-hero, .shop-hero, .team-hero {
    background-size: cover;
    background-position: center top;
    min-height: 50vh;
  }

  .hero-inner { padding: 36px 12px; }
  .hero-inner h2, .hero-inner h3 { font-size: 28px; }
  .hero-inner p.lead { font-size: 16px; }

  .three { grid-template-columns: 1fr; }

  nav { width: 100%; margin-top: 8px; text-align: center; }
  nav a { display: inline-block; margin: 6px 10px; font-size: 14px; }

  .btn { padding: 14px 24px; font-size: 16px; }
}
