:root {
  --verde: #596313;
  --verde-oscuro: #3f470c;
  --crema: #faf8f1;
  --blanco: #ffffff;
  --negro: #1f1f1f;
  --gris: #666;
  --borde: #d8d3c4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--crema);
  color: var(--negro);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: auto;
}

header {
  position: sticky;
  top: 0;
  background: var(--crema);
  border-bottom: 1px solid var(--borde);
  z-index: 100;
}

.navbar {
  height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo span {
  font-family: Georgia, serif;
  font-size: 2rem;
  letter-spacing: 2px;
  border-bottom: 3px solid var(--negro);
}

.logo small {
  display: block;
  color: var(--verde);
  letter-spacing: 2px;
  margin-top: 4px;
}

nav {
  display: flex;
  gap: 28px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

nav a:hover {
  color: var(--verde);
}

.menu-btn {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0;
}

.tag {
  color: var(--verde);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 1;
}

.hero h2 {
  color: var(--verde);
  font-weight: 400;
  letter-spacing: 4px;
  margin-bottom: 18px;
}

.hero p {
  color: var(--gris);
  max-width: 540px;
  margin-bottom: 28px;
}

.btn {
  display: inline-block;
  background: var(--verde);
  color: white;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: bold;
}

.btn:hover {
  background: var(--verde-oscuro);
}

.hero-image {
  background: white;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 42px;
}

.section-title h2,
.about h2,
.contact h2 {
  font-family: Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product-card {
  background: white;
  border: 1px solid var(--borde);
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  transition: 0.25s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.1);
}

.product-card img {
  height: 230px;
  object-fit: contain;
  margin: 0 auto 20px;
}

.product-card h3 {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.product-card p {
  color: var(--gris);
  margin-bottom: 18px;
}

.product-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-buttons a {
  border: 1px solid var(--verde);
  border-radius: 999px;
  padding: 10px;
  font-weight: bold;
  font-size: 0.9rem;
}

.product-buttons a:first-child {
  background: var(--verde);
  color: white;
}

.product-buttons a:last-child {
  color: var(--verde);
}

.about {
  background: var(--verde);
  color: white;
  text-align: center;
}

.about p {
  max-width: 700px;
  margin: 18px auto 0;
  color: rgba(255,255,255,0.88);
}

.contact {
  text-align: center;
}

.contact p {
  color: var(--gris);
  margin: 12px 0 24px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-buttons a {
  border: 1px solid var(--verde);
  border-radius: 999px;
  padding: 12px 22px;
  color: var(--verde);
  font-weight: bold;
}

.contact-buttons a:first-child {
  background: var(--verde);
  color: white;
}

footer {
  text-align: center;
  padding: 28px;
  border-top: 1px solid var(--borde);
  color: var(--gris);
}

/* Responsive */
@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: var(--crema);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--borde);
  }

  nav.active {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-buttons {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 0;
  }
}