* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: #2b2119;
  background: #fffaf3;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  background: #fffaf3;
  border-bottom: 1px solid #eadcc9;
  gap: 20px;
}

.logo h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 400;
}

.logo p {
  margin: 4px 0 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

nav a {
  color: #2b2119;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 15, 8, 0.45);
}

.hero-text {
  position: relative;
  z-index: 1;
  color: #fffaf3;
  max-width: 760px;
  padding: 30px;
}

.hero-text h2 {
  font-size: 42px;
  margin-bottom: 18px;
  font-weight: 400;
}

.hero-text p {
  font-size: 20px;
  line-height: 1.5;
}

.button {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 34px;
  background: #fffaf3;
  color: #2b2119;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
}

main { padding: 50px 6%; }

.intro, .socials, .product-section {
  text-align: center;
  margin-bottom: 30px;
}

.intro h2,
.socials h2,
.product-section h2,
.disclosure h2,
.contact h2 {
  font-size: 34px;
  font-weight: 400;
}

.cards, .product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card, .product-card {
  background: #ffffff;
  padding: 28px;
  border: 1px solid #eadcc9;
  min-height: 230px;
  text-align: left;
}

.card h3, .product-card h3 {
  font-size: 23px;
  font-weight: 400;
}

.card p, .product-card p {
  line-height: 1.6;
}

.product-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #f4eadc;
  border: 1px solid #eadcc9;
  margin-bottom: 16px;
}

.no-image {
  height: 210px;
  background: #f4eadc;
  border: 1px solid #eadcc9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a4e22;
  margin-bottom: 16px;
  text-align: center;
  padding: 20px;
}

.product-category {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  color: #7a4e22;
}

.price {
  font-weight: bold;
  font-size: 18px;
}

.card a,
.product-card a,
.contact a {
  display: inline-block;
  margin-top: 12px;
  color: #7a4e22;
  font-weight: bold;
}

.product-button {
  padding: 12px 20px;
  background: #2b2119;
  color: #fffaf3 !important;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
}

.socials {
  margin-top: 50px;
  background: #ffffff;
  border: 1px solid #eadcc9;
  padding: 30px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.social-links a {
  padding: 12px 22px;
  background: #2b2119;
  color: #fffaf3;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
}

.disclosure, .contact {
  margin-top: 50px;
  background: #f4eadc;
  padding: 28px;
}

footer {
  text-align: center;
  padding: 28px;
  background: #2b2119;
  color: #fffaf3;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    text-align: center;
  }

  .cards, .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-text h2 { font-size: 32px; }
}

@media (max-width: 600px) {
  .cards, .product-grid {
    grid-template-columns: 1fr;
  }

  .logo h1 { font-size: 34px; }

  .hero { min-height: 430px; }
}
