:root {
  --bg: #fffaf5;
  --panel: #ffffff;
  --panel-alt: #f5efe8;
  --ink: #1d1d1c;
  --muted: #5f5a56;
  --line: #e8dfd5;
  --brand: #9a6b43;
  --brand-deep: #5d3d2b;
  --accent: #d9b88f;
  --success: #2d6a4f;
  --shadow: 0 18px 40px rgba(28, 21, 16, 0.08);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--ink);
  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;
}

header {
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}
.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}
.nav-cta {
  display: inline-block;
  background: var(--brand-deep);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.hero {
  padding: 72px 0 40px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}
.kicker {
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}
h1, h2, h3 { line-height: 1.15; margin: 0 0 18px; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.lead {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 62ch;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.button {
  display: inline-block;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 700;
  border: 1px solid var(--line);
}
.button.primary {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}
.button.secondary {
  background: white;
  color: var(--ink);
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.hero-visual {
  min-height: 420px;
  background: linear-gradient(135deg, #f2dfc4, #ead5b8, #f8f0e7);
  border-radius: 28px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--brand-deep);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.section { padding: 48px 0; }
.grid-three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
.feature, .info-card, .product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
.product-card {
  padding: 0;
  overflow: hidden;
}
.product-image {
  height: 220px;
  background: linear-gradient(135deg, #efe6d9, #d7b98a, #f9f4ef);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--brand-deep);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}
.product-image-missing {
  color: var(--muted);
  font-size: 0.9rem;
}
.product-body { padding: 20px; }
.small-meta {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}
.inline-list li {
  background: var(--panel-alt);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.86rem;
}
.page-hero { padding: 60px 0 30px; }
.product-detail { padding: 48px 0 72px; }
.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  margin-top: 28px;
}
.product-detail-image {
  min-height: 520px;
  background: var(--panel-alt);
  border: 1px solid var(--line);
  border-radius: 20px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.product-detail-image img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  padding: 36px;
}
.product-detail-copy { padding-top: 24px; }
.product-price {
  color: var(--brand-deep);
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0 0 8px;
}
.stock-status { font-weight: 700; }
.stock-status.in-stock { color: var(--success); }
.stock-status.out-of-stock { color: var(--muted); }
.breadcrumbs {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.form {
  display: grid;
  gap: 14px;
  max-width: 760px;
}
.input, select, textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 14px 16px;
  font: inherit;
  background: white;
}
footer {
  padding: 32px 0 60px;
  border-top: 1px solid var(--line);
  background: #fffdfb;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
}
.muted { color: var(--muted); }
@media (max-width: 900px) {
  .hero-inner, .grid-three, .product-grid, .footer-grid, .product-detail-grid {
    grid-template-columns: 1fr;
  }
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }
}
