*, *::before, *::after { box-sizing: border-box }

:root {
  --cream: #FDF8F0;
  --warm-white: #FEFAE0;
  --green-sage: #B7E4C7;
  --green-dark: #4A7C59;
  --brown: #8B6F47;
  --brown-light: #D4A373;
  --brown-dark: #4A3728;
  --coral: #C0846E;
  --lavender: #856399;
}

html { font-size: 16px; scroll-behavior: smooth }
body {
  margin: 0;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--brown-dark);
  background: var(--cream);
  line-height: 1.6;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem }

/* ==================== NAV ==================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #fff; box-shadow: 0 2px 8px rgba(139,111,71,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 65px; padding: 0 1.5rem;
}
.nav-brand {
  font-family: 'Lora', serif; font-size: 1.25rem; font-weight: 700;
  color: var(--brown-dark); text-decoration: none;
}
.nav-logo {
  max-height: 56px; width: auto; display: block; margin: 0; padding: 0;
}
.nav-menu { display: flex; gap: 2rem; list-style: none; align-items: center }
.nav-menu a {
  color: var(--brown-dark); text-decoration: none; font-size: 0.95rem;
  font-weight: 500; transition: color 0.2s;
}
.nav-menu a:hover { color: var(--brown) }

.nav-toggle {
  display: none; flex-direction: column; gap: 4px; background: none;
  border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2.5px; background: var(--brown-dark);
  border-radius: 2px; transition: all 0.3s;
}

/* ==================== HERO ==================== */
.hero {
  position: relative; min-height: 85vh; display: flex; align-items: center;
  justify-content: center; text-align: center;
  background-image: url('../img/beasbb.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(74,55,40,0.45);
}
.hero-content { position: relative; z-index: 1; max-width: 700px }
.hero-title {
  font-family: 'Lora', serif; font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--warm-white); margin-bottom: 1rem; line-height: 1.2;
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(254,250,224,0.95);
  margin-bottom: 0.75rem;
}
.hero-tagline {
  font-size: clamp(0.9rem, 1.5vw, 1.15rem); color: rgba(254,250,224,0.85);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 2rem;
}

/* ==================== BUTTONS ==================== */
.btn-primary {
  display: inline-block; padding: 0.85rem 2rem; background: var(--green-sage);
  color: var(--brown-dark); text-decoration: none; border-radius: 4px;
  font-weight: 700; font-size: 1rem; transition: all 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--green-dark); color: #fff }
.btn-primary.large { padding: 1rem 2.5rem; font-size: 1.15rem }

/* ==================== SECTION PAD ==================== */
.section-pad { padding: 5rem 0 }

/* ==================== TITLES ==================== */
.section-title {
  font-family: 'Lora', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--brown-dark); text-align: center; margin-bottom: 0.75rem;
}
.section-subtitle {
  text-align: center; font-size: 1.1rem; color: var(--brown);
  max-width: 600px; margin: 0 auto 3rem;
}

/* ==================== ABOUT ==================== */
.about { background: #fff }
.about-inner { max-width: 800px; text-align: center }
.about-text { font-size: 1.15rem; color: var(--brown); margin-bottom: 3rem }

.about-values {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem; text-align: center;
}
.value-card { padding: 2rem }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem }
.value-card h3 { font-family: 'Lora', serif; color: var(--brown-dark); margin-bottom: 0.5rem }

/* ==================== PRODUCTS ==================== */
.products { background: var(--cream) }
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem;
}
.product-card {
  background: #fff; border-radius: 12px; overflow: hidden; text-align: center;
  box-shadow: 0 4px 20px rgba(139,111,71,0.1); transition: transform 0.2s;
}
.product-card:hover { transform: translateY(-6px) }
.product-img-placeholder { height: 200px }
.product-name { font-family: 'Lora', serif; color: var(--brown-dark); margin: 1rem 0 0 .5rem }
.product-desc { padding: 0 1.5rem; color: var(--brown); font-size: 0.95rem }
.product-tag {
  display: inline-block; margin: .75rem auto 0; background: var(--green-sage);
  color: var(--brown-dark); padding: .3rem 1rem; border-radius: 20px;
  font-size: .8rem; font-weight: 700; letter-spacing: 1px;
}

/* ==================== WHERE TO FIND US ==================== */
.bright-bg { background: var(--warm-white) }
.shops-grid { max-width: 700px; margin: 0 auto }
.shop-item { display: flex; align-items: baseline; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(139,111,71,0.15) }
.shop-name { font-size: 1.2rem; color: var(--green-dark); flex-shrink: 0 }
.shop-details h4 { margin: 0; font-family: 'Lora', serif; color: var(--brown-dark) }
.shop-details p { margin: .25rem 0 0; color: var(--brown); font-size: .95rem }

/* ==================== CONTACT ==================== */
.contact { background: #fff; text-align: center }
.contact-inner { max-width: 600px }
.contact-text { font-size: 1.15rem; margin-bottom: 2rem }
.contact-email { margin-bottom: 1rem }
.contact-note { color: var(--brown); margin-top: 1rem }

/* ==================== FOOTER ==================== */
.footer { background: var(--brown-dark); color: rgba(254,250,224,0.7); padding: 2rem 0; text-align: center }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem }
.footer-fb-link { color: var(--green-sage); text-decoration: none; font-size: .95rem }
.footer-fb-link:hover { color: #fff }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .nav-toggle { display: flex }
  .nav-menu {
    display: none; position: absolute; top: 65px; left: 0; right: 0;
    background: #fff; flex-direction: column; gap: 1rem; padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(139,111,71,0.1); text-align: center;
  }
  .nav-menu.open { display: flex }
  .nav-cta { color: var(--green-dark) !important; font-weight: 700 !important }
  .hero-content { padding: 2rem 1rem }
  .footer-inner { flex-direction: column; text-align: center }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr }
  .about-values { grid-template-columns: 1fr }
}
