/* ====== GLOBAL (shared) ====== */
:root{
  --brand-brown: #8f603d;
  --brand-orange: #b74702;
  --chip-bg: #f3efe7;
  --chip-text: #6b4f3a;
  --card-bg: #fff;
  --shadow: 0 8px 20px rgba(0,0,0,.1);
}

*{ box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
  font-family: 'Nunito', system-ui, -apple-system, Arial, sans-serif;
  color: #333;
  background: #fff;
}

/* Utilities */
.container-compact{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar (transparent over hero) */
nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}

.navbar{
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 14px 0;
  margin: 0;
}

.navbar a{
  text-decoration: none;
  color: var(--brand-brown);
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background .2s ease, color .2s ease;
}

.navbar a:hover{
  background: #eddcccb0;
}

/* Reusable bits */
.chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 8px 0 0 0;
  list-style: none;
}

.chips li{
  background: var(--chip-bg);
  color: var(--chip-text);
  padding: 6px 12px;
  border-radius: 16px;
  font-weight: 700;
  font-size: .9rem;
}

.chips.small li{ font-size: .8rem; padding: 4px 10px; }

.btn{
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
}

.btn.primary{
  background: var(--brand-brown);
  color: #fff;
}

.btn.ghost{
  border: 2px solid var(--brand-brown);
  color: var(--brand-brown);
  background: transparent;
}

.scroll-section{ padding-top: 40px; } /* offset for fixed nav */

/* Footer / CTA shared styles */
.call-to-action{
  padding: 80px 20px;
  text-align: center;
}

.btn-contact{
  padding: 12px 24px;
  background: var(--brand-brown);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
}

/* Responsive helpers */
@media (max-width: 900px){
  .navbar{ gap: 18px; }
}
