:root {
  --ink: #221b26;
  --ink-2: #2b2330;
  --paper: #f4ecdd;
  --paper-edge: #e6dcc7;
  --brass: #c39a4e;
  --teal: #3a6c67;
  --cream-text: #ece2d2;
  --muted: #b7adb9;
  --ink-text: #34262c;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--ink);
  color: var(--cream-text);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.wrap { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }
.site-header { border-bottom: 1px solid rgba(244,236,221,.17); }
.header-row { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 18px 0; }
.brand { color: var(--paper); font-family: "Instrument Serif", Georgia, serif; font-size: 1.75rem; line-height: 1; text-decoration: none; white-space: nowrap; }
.brand em { color: var(--brass); font-weight: 400; }
.nav { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; }
.nav a { font-size: .85rem; font-weight: 600; text-decoration: none; }
.nav a:hover, .nav a:focus-visible, .text-link:hover, .text-link:focus-visible { color: var(--brass); text-decoration: underline; text-underline-offset: 4px; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 0; padding: 0; list-style: none; font-size: .79rem; color: var(--muted); }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: var(--brass); }
.crumbs a { text-decoration: none; }
.crumbs a:hover, .crumbs a:focus-visible { text-decoration: underline; }
.eyebrow { font-family: "Space Mono", monospace; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brass); }
h1, h2, h3 { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; line-height: 1.06; }
h1 { font-size: clamp(2.7rem, 6vw, 5.4rem); color: var(--paper); margin: 12px 0 18px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--paper); }
p { margin: 0 0 16px; }
.lead { font-size: clamp(1.04rem, 2vw, 1.23rem); max-width: 62ch; color: #d6cbce; }
.collection-hero { padding: 62px 0 54px; }
.collection-hero .lead { margin-bottom: 24px; }
.collection-hero--split { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(24px, 5vw, 70px); }
.hero-photo { border-radius: 8px; aspect-ratio: 4/3; width: 100%; height: auto; object-fit: contain; box-shadow: 0 30px 60px rgba(0,0,0,.25); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--brass); color: #241b12; padding: 13px 19px; border-radius: 5px; font-weight: 700; text-decoration: none; min-height: 48px; }
.button:hover, .button:focus-visible { background: #dfb96e; }
.button--outline { background: transparent; color: var(--paper); border: 1px solid var(--brass); }
.button--outline:hover, .button--outline:focus-visible { background: rgba(195,154,78,.14); }
.section-header { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin: 22px 0 24px; }
.section-header h2 { margin: 0; }
.section-note { color: var(--muted); font-size: .9rem; max-width: 64ch; }
.grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; margin-bottom: 76px; }
.product-card { background: var(--paper); color: var(--ink-text); border-radius: 7px; overflow: hidden; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; display: flex; flex-direction: column; }
.product-card:hover, .product-card:focus-visible { transform: translateY(-4px); box-shadow: 0 22px 40px rgba(0,0,0,.28); outline: 2px solid var(--brass); outline-offset: 2px; }
.product-card img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: contain; }
.card-copy { display: flex; flex-direction: column; flex: 1; padding: 18px 20px 22px; }
.card-copy .eyebrow { color: var(--teal); font-size: .62rem; }
.card-copy h3 { margin: 8px 0 9px; font-size: 1.7rem; }
.card-copy p { color: #61554d; font-size: .87rem; flex: 1; }
.card-more { font-size: .85rem; font-weight: 700; border-top: 1px solid var(--paper-edge); padding-top: 12px; }
.product-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px,5vw,64px); padding: 48px 0 72px; align-items: start; }
.gallery { display: grid; gap: 14px; }
.gallery figure { margin: 0; }
.gallery img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: contain; border-radius: 7px; background: var(--ink-2); }
.gallery figcaption { color: var(--muted); font-size: .76rem; margin-top: 8px; }
.gallery-pair { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.gallery-pair img { aspect-ratio: 4/3; }
.product-info h1 { font-size: clamp(2.5rem,4.6vw,4.3rem); }
.product-info .lead { font-size: 1.11rem; }
.detail-panel { padding: 22px 0; margin: 22px 0; border-top: 1px solid rgba(195,154,78,.35); border-bottom: 1px solid rgba(195,154,78,.25); color: #d6cbce; }
.detail-panel h2 { font-size: 1.8rem; margin: 0 0 12px; }
.detail-panel p:last-child { margin-bottom: 0; }
.buy-note { color: var(--muted); font-size: .84rem; margin-top: 14px; }
.disclaimer { color: var(--muted); font-size: .75rem; margin-top: 18px; }
.related { border-top: 1px solid rgba(195,154,78,.2); padding-top: 46px; }
.related .grid { margin-top: 23px; }
.placeholder { border: 1px dashed rgba(195,154,78,.58); border-radius: 8px; aspect-ratio: 4/3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center; padding: 30px; background: var(--ink-2); }
.placeholder-icon { font-family: "Instrument Serif", Georgia, serif; font-size: 4rem; color: var(--brass); line-height: 1; }
.placeholder strong { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; font-size: 1.8rem; color: var(--paper); }
.placeholder span:last-child { color: var(--muted); font-size: .9rem; }
.site-footer { border-top: 1px solid rgba(244,236,221,.14); padding: 30px 0 42px; margin-top: auto; color: var(--muted); font-size: .82rem; }
.footer-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px 32px; }
.footer-links { display: flex; gap: 10px 18px; flex-wrap: wrap; }
.footer-links a { text-decoration: none; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--brass); text-decoration: underline; }
@media (max-width: 850px) {
  .collection-hero--split, .product-layout { grid-template-columns: 1fr; }
  .collection-hero--split .hero-photo { max-width: 700px; }
  .grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 600px) {
  .wrap { width: min(100% - 28px, 1140px); }
  .header-row { align-items: flex-start; flex-direction: column; gap: 13px; }
  .nav { gap: 8px 14px; }
  .collection-hero { padding: 40px 0; }
  .grid { grid-template-columns: 1fr; gap: 17px; }
  .product-layout { padding: 32px 0 52px; }
  .gallery-pair { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: start; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .product-card { transition: none; }
}
