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

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: #4a3f35;
  background: #fffdfa;
  line-height: 1.6;
}

.wrap { max-width: 1000px; margin: 0 auto; padding: 0 24px; }

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

.site-header {
  background: #fff;
  border-bottom: 1px solid #ecdfc8;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
}

.logo {
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: #b3893f;
}

nav a {
  margin-left: 28px;
  font-size: 0.95rem;
}

nav a:hover { color: #b3893f; }

.hero {
  background: linear-gradient(180deg, #fdf6e9 0%, #fffdfa 100%);
  text-align: center;
  padding: 100px 24px;
}

.hero h1 {
  font-size: 3rem;
  color: #b3893f;
  letter-spacing: 3px;
}

.tagline { font-size: 1.25rem; margin-top: 12px; }

.lead { color: #7a6a56; margin-top: 6px; }

.btn {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 32px;
  background: #b3893f;
  color: #fff;
  border-radius: 2px;
  letter-spacing: 1px;
}

.btn:hover { background: #96712f; }

.section { padding: 72px 24px; }

.section.alt { background: #fdf6e9; text-align: center; }

.section h2 {
  text-align: center;
  font-size: 2rem;
  color: #b3893f;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.card {
  background: #fdf6e9;
  padding: 28px;
  border-radius: 4px;
  text-align: center;
}

.card h3 { color: #96712f; margin-bottom: 10px; }

.shop-note {
  text-align: center;
  margin-top: 40px;
  color: #7a6a56;
  font-style: italic;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.contact-grid h3 { color: #96712f; margin-bottom: 10px; }

.site-footer {
  text-align: center;
  padding: 32px 24px;
  color: #7a6a56;
  font-size: 0.9rem;
  border-top: 1px solid #ecdfc8;
}
