* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #24211f;
  background: #fbf7f1;
}

a {
  color: inherit;
}

.site-header {
  border-bottom: 1px solid #e8ded1;
  background: #fffaf4;
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 92px;
  height: auto;
  display: block;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu a {
  text-decoration: none;
}

.menu a:hover,
.menu a.active {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 24px 34px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  font-weight: 500;
}

.hero p,
.page-copy p,
.policy p,
.policy li {
  font-size: 16px;
  line-height: 1.75;
  color: #5a5148;
}

.hero img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f0e8de;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 24px 64px;
}

.section h2 {
  margin: 0 0 22px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.product {
  background: #fff;
  border: 1px solid #eadfd2;
}

.product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #f0e8de;
}

.product-info {
  padding: 16px;
}

.product h3 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
}

.price {
  color: #6d4a2f;
  font-weight: 700;
}

.note {
  margin-top: 24px;
  color: #6b625a;
}

.page-copy,
.policy,
.contact-grid {
  max-width: 880px;
  margin: 0 auto;
  padding: 50px 24px 72px;
}

.page-title {
  margin: 0 0 22px;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
}

.policy h2,
.contact-grid h2 {
  margin-top: 34px;
  font-size: 20px;
  font-weight: 500;
}

.contact-box {
  border: 1px solid #eadfd2;
  background: #fff;
  padding: 24px;
}

.site-footer {
  border-top: 1px solid #e8ded1;
  padding: 24px;
  text-align: center;
  color: #6b625a;
  background: #fffaf4;
}

@media (max-width: 860px) {
  .nav,
  .hero {
    display: block;
  }

  .menu {
    justify-content: flex-start;
    margin-top: 18px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero img {
    margin-top: 24px;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
