:root {
  --cream: #CEC3B8;
  --tan: #C0A086;
  --brown: #885A3E;
  --caramel: #B27E57;
  --dark: #5A4135;
  --white: #fffdfb;
  --shadow: 0 10px 30px rgba(90, 65, 53, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(206, 195, 184, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(90, 65, 53, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  padding: 4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--dark);
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 2px solid transparent;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--brown);
  color: var(--white);
}

.btn-primary:hover { background: var(--dark); }

.btn-secondary {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn-secondary:hover {
  background: var(--dark);
  color: var(--white);
}

.hero {
  padding: 72px 0 48px;
}

.hero-grid,
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.kicker {
  display: inline-block;
  background: var(--tan);
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1, h2, h3 {
  line-height: 1.1;
  margin: 0 0 14px;
}

h1 { font-size: clamp(2.3rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; }

p.lead {
  font-size: 1.1rem;
  max-width: 58ch;
}

.card,
.panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel { padding: 28px; }
.section { padding: 28px 0 70px; }
.section-title { max-width: 740px; margin-bottom: 24px; }

.stats,
.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 22px;
}

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

.stat,
.feature,
.product-card,
.contact-card {
  padding: 24px;
}

.stat strong {
  display: block;
  font-size: 2rem;
  color: var(--brown);
  margin-bottom: 6px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--tan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 12px;
}

.product-image-placeholder,
.order-link-placeholder,
.gallery-placeholder {
  min-height: 220px;
  border: 2px dashed rgba(90, 65, 53, 0.35);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(192, 160, 134, 0.24), rgba(206, 195, 184, 0.35));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-weight: 700;
}

.product-card { overflow: hidden; }
.product-copy { padding-top: 18px; }

.banner {
  background: linear-gradient(135deg, var(--dark), var(--brown));
  color: var(--white);
  padding: 34px;
  border-radius: 24px;
}

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 28px 0;
  margin-top: 40px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

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

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-clean li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(90, 65, 53, 0.12);
}

.list-clean li:last-child { border-bottom: 0; }

.highlight {
  color: var(--brown);
}

.hero-art {
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.hero-art img {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

@media (max-width: 920px) {
  .hero-grid,
  .two-col,
  .grid-4,
  .grid-3,
  .grid-2,
  .stats {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
  }
}
