
:root {
  --primary: #8B4513;
  --secondary: #F5DEB3;
  --dark: #222;
  --muted: #666;
  --blue: #1E4FA3;
  --blue: #F2C94C;
  --blue: #8B5A2B;
  --bg: #ffffff;
  --card: #ffffff;
  --shadow: 0 10px 25px rgba(0,0,0,0.1);
  --radius: 14px;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--bg);
}

a {
  text-decoration: none;
  color: inherit;
}

/* TOP BAR */
.topbar {
  background: #2b2b2b;
  color: #fff;
  font-size: 0.9rem;
}

.topbar .wrap {
  max-width: 1100px;
  margin: auto;
  padding: 10px 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 100;
}

.nav {
  max-width: 1100px;
  margin: auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand strong {
  font-size: 1.1rem;
}

.brand span {
  font-size: 0.85rem;
  color: var(--muted);
}

.menu {
  display: flex;
  gap: 18px;
}

.menu a {
  font-weight: bold;
  padding: 8px 10px;
  border-radius: 8px;
}

.menu a:hover {
  background: rgba(139, 69, 19, 0.1);
  color: var(--primary);
}

.menu .cta {
  background: var(--primary);
  color: #fff;
}

.menu .cta:hover {
  background: #6f3610;
  color: #fff;
}

.hamburger {
  display: none;
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* HERO */
.hero {
  background: linear-gradient(
      rgba(139, 69, 19, 0.9),
      rgba(30, 79, 163, 0.6)
    ),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero .wrap {
  max-width: 1100px;
  margin: auto;
  padding: 60px 18px;
}

.hero h1 {
  font-size: 2.2rem;
}

.hero p {
  margin-top: 12px;
  max-width: 600px;
}

.pillrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  background: rgba(255,255,255,0.2);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
}

.actions a {
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: bold;
}

.actions a:first-child {
  background: #fff;
  color: var(--primary);
}

.actions a:last-child {
  border: 1px solid #fff;
  color: #fff;
}

/* SECTIONS */
section {
  max-width: 1100px;
  margin: auto;
  padding: 45px 18px;
}

.section-title {
  margin-bottom: 20px;
}

.section-title h2 {
  color: var(--primary);
}

.subtitle {
  color: var(--muted);
}

/* GRID */
.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

/* CARDS */
.card {
  background: var(--card);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card h3 {
  color: var(--brown);
  margin-bottom: 8px;
}

.product-card {
  border-left: 6px solid var(--yellow);
}

.pack {
  font-weight: bold;
  color: #555;
}

.price {
  font-weight: bold;
  color: var(--blue);
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.gallery img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* CONTACT */
.contactbox {
  background: #fafafa;
  padding: 18px;
  border-radius: var(--radius);
}

.map {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 12px;
}

.contact-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}

/* FOOTER */
footer {
  background: #1f1f1f;
  color: #fff;
  text-align: center;
  padding: 20px;
}

footer .small {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* MOBILE */
@media (max-width: 768px) {
  .grid.three {
    grid-template-columns: 1fr;
  }

  .menu {
    display: none;
    position: absolute;
    background: #fff;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 12px;
  }

  .menu.open {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .hero h1 {
    font-size: 1.8rem;
  }
}

.map iframe {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  border: 0;
}
