:root {
  --ink: #1f5f55;
  --coal: #22272d;
  --steel: #d9e0e5;
  --paper: #f6f1e8;
  --linen: #e6dccd;
  --copper: #b86238;
  --moss: #69745d;
  --gold: #d7ad5b;
  --danger: #6d1d18;
  --line: rgba(24, 27, 31, .16);
  --shadow: 0 24px 70px rgba(24, 27, 31, .18);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--gold);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.site-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 4vw;
  background: rgba(246, 241, 232, .92);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}
.brand em { font-family: Georgia, serif; font-weight: 400; }
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  border-radius: 2px;
  letter-spacing: 1px;
}
.main-nav { display: flex; align-items: center; gap: 24px; font-size: 13px; font-weight: 800; }
.main-nav a { padding: 10px 0; }
.main-nav a:hover { color: var(--copper); }
.nav-cart span {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  margin-left: 6px;
  border-radius: 999px;
  background: var(--copper);
  color: white;
  font-size: 12px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span:not(.sr-only) { width: 22px; height: 2px; background: var(--ink); }
.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 6vw;
  align-items: center;
  padding: 72px 4vw 58px;
  background:
    linear-gradient(115deg, rgba(24,27,31,.05), transparent 46%),
    radial-gradient(circle at 82% 22%, rgba(215,173,91,.28), transparent 30%);
}
.eyebrow, .section-label {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 900;
  color: var(--copper);
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  max-width: 950px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(52px, 8vw, 118px);
  line-height: .92;
  letter-spacing: 0;
}
.lede {
  max-width: 680px;
  margin: 28px 0 0;
  color: #555044;
  font-size: 18px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  font-weight: 900;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, color .16s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--ink); color: var(--paper); }
.button.secondary { background: transparent; }
.button.disabled { pointer-events: none; opacity: .42; }
.hero-panel {
  background: var(--coal);
  color: white;
  box-shadow: var(--shadow);
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.hero-panel img { width: 100%; min-height: 410px; object-fit: cover; }
.hero-panel div { padding: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-panel span { display: block; color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: .16em; font-weight: 900; }
.hero-panel strong { display: block; margin-top: 8px; font-family: Georgia, serif; font-size: 34px; line-height: 1.05; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip div { padding: 24px 4vw; border-right: 1px solid var(--line); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong { display: block; margin-bottom: 5px; }
.trust-strip span { color: #655f54; font-size: 14px; }
.toolbar {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: end;
  padding: 82px 4vw 28px;
}
h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
  font-weight: 500;
}
.filters { display: flex; justify-content: flex-end; gap: 8px; flex-wrap: wrap; }
.filter {
  border: 1px solid var(--line);
  background: #fff8ed;
  min-height: 42px;
  padding: 9px 13px;
  font-weight: 900;
  cursor: pointer;
}
.filter.active, .filter:hover { background: var(--ink); color: var(--paper); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.product-card {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  min-height: 640px;
}
.product-card.hidden { display: none; }
.product-card figure { margin: 0; background: #ddd2c1; }
.product-card img { width: 100%; aspect-ratio: 1.35; object-fit: cover; }
.product-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  background: white;
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.badge.own { background: #eaf0dc; }
.badge.affiliate { background: #efe5d2; }
.product-card h3 { margin: 0; font-family: Georgia, serif; font-size: 30px; line-height: 1.08; }
.product-card p { color: #595349; }
.product-specs { display: grid; gap: 8px; margin: 12px 0 18px; padding: 0; list-style: none; }
.product-specs li { display: flex; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--line); padding-bottom: 8px; font-size: 13px; }
.price-row { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { font-size: 28px; font-weight: 950; }
.owned-stock, .care, .cart-panel {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(300px, 1.1fr);
  gap: 6vw;
  padding: 92px 4vw;
  border-bottom: 1px solid var(--line);
}
.stock-copy p:not(.section-label) { max-width: 620px; color: #5b554b; }
.stock-card, .cart-box {
  background: #fffaf1;
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: 0 18px 50px rgba(24,27,31,.08);
}
.stock-card strong { font-family: Georgia, serif; font-size: 32px; }
.stock-card li { margin: 12px 0; }
.guide { padding: 92px 4vw; background: var(--ink); color: var(--paper); }
.guide .section-label { color: var(--gold); }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 34px; background: rgba(255,255,255,.2); }
.guide article { background: var(--ink); padding: 28px; min-height: 260px; }
.guide span { color: var(--gold); font-weight: 900; }
.guide h3 { font-family: Georgia, serif; font-size: 34px; margin: 18px 0 12px; }
.guide p { color: rgba(246,241,232,.72); }
.care { background: var(--linen); }
.care ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.care li { background: rgba(255,255,255,.5); border: 1px solid var(--line); padding: 18px; font-weight: 800; }
.cart-items { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.cart-items li { display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.cart-items button { border: 1px solid var(--line); background: white; cursor: pointer; min-height: 36px; padding: 6px 10px; font-weight: 900; }
.cart-empty { color: #6d665c; }
.cart-total { display: flex; justify-content: space-between; margin: 24px 0; font-size: 18px; }
.fine-print { margin: 14px 0 0; color: #6d665c; font-size: 13px; }
.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 42px 4vw;
  background: var(--coal);
  color: var(--paper);
}
.site-footer p { max-width: 620px; color: rgba(246,241,232,.68); margin: 0; }
.site-footer a:last-child { color: var(--gold); font-weight: 900; }
@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 10px 4vw 18px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { min-height: 48px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
  .hero, .toolbar, .owned-stock, .care, .cart-panel { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 48px; }
  .hero-panel { min-height: auto; }
  .trust-strip, .product-grid, .guide-grid, .site-footer { grid-template-columns: 1fr; }
  .trust-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .filters { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .site-header { padding: 0 18px; }
  .brand span:last-child { font-size: 15px; }
  .brand-mark { width: 40px; height: 40px; }
  h1 { font-size: 48px; }
  .product-card { min-height: auto; }
  .price-row { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .cart-items li { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
  .button:hover { transform: none; }
}
