:root {
  --ink: #24160f;
  --muted: #725d4d;
  --paper: #f3eadc;
  --panel: #fff9ef;
  --gold: #b9852c;
  --wine: #6f1d1b;
  --line: rgba(36, 22, 15, 0.16);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
.nav {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(243, 234, 220, 0.92);
  backdrop-filter: blur(16px);
}
.brand { font-weight: 900; letter-spacing: 0.12em; }
.nav nav { display: flex; gap: 20px; font-size: 13px; font-weight: 800; color: var(--muted); }
.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}
.nav-cta, .primary { background: var(--ink); color: #fff; }
.secondary { border: 1px solid var(--line); color: var(--ink); }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 79px);
  padding: clamp(36px, 7vw, 86px) clamp(18px, 5vw, 70px);
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.96;
}
h1 { max-width: 780px; font-size: clamp(48px, 9vw, 112px); }
h2 { font-size: clamp(34px, 5vw, 68px); }
.lead {
  max-width: 620px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-media {
  position: relative;
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 32px 90px rgba(74, 37, 19, 0.18);
}
.hero-media img, .product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.price-chip {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 14px 18px;
  border-radius: 6px;
  background: var(--wine);
  color: #fff;
  font-weight: 900;
}
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}
.strip span {
  padding: 20px;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
}
.strip span + span { border-left: 1px solid var(--line); }
.catalog, .process { padding: clamp(50px, 7vw, 90px) clamp(18px, 5vw, 70px); }
.section-head {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 28px;
  margin-bottom: 32px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.product {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.product:not(.featured) { padding-bottom: 18px; }
.product:not(.featured) img { height: 250px; }
.product span, .product h3, .product p, .product strong { margin-inline: 18px; }
.product span {
  display: block;
  margin-top: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.product h3 { margin-top: 8px; margin-bottom: 8px; font-size: 21px; }
.product p { color: var(--muted); line-height: 1.5; }
.product strong { display: block; margin-top: 12px; font-size: 20px; }
.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}
.process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  background: var(--ink);
  color: #fff;
}
.process .eyebrow { color: #e0bb77; }
.process ol { margin: 0; padding-left: 22px; color: #eadbc7; font-size: 20px; line-height: 2; }
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 70px);
}
footer a { font-weight: 900; color: var(--wine); }
@media (max-width: 860px) {
  .nav nav { display: none; }
  .hero, .section-head, .process, .featured { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-media { min-height: 380px; }
  .strip { grid-template-columns: 1fr 1fr; }
  .grid { grid-template-columns: 1fr; }
  .featured { grid-column: span 1; }
}
