:root {
  --ink: #171411;
  --muted: #6b6357;
  --paper: #f8f3eb;
  --white: #fffdf9;
  --gold: #b28a2e;
  --line: #ddd2c1;
  --accent: #c4622d;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: 'Outfit', sans-serif; line-height: 1.75; }
.site-nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1rem max(1.25rem, calc((100vw - 1080px) / 2)); background: #141210; }
.brand { color: #f5f0e8; text-decoration: none; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; }
.site-nav-links { display: flex; gap: 1.5rem; }
.site-nav-links a { color: #c8bfb0; text-decoration: none; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.site-nav-links a:hover { color: #e2c97e; }
.article-shell { max-width: 780px; margin: 0 auto; padding: 5rem 1.5rem 6rem; }
.app-label { color: var(--accent); font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
h1 { margin: .8rem 0 1rem; font-family: 'Cormorant Garamond', serif; font-size: clamp(2.7rem, 7vw, 4.8rem); font-weight: 500; line-height: 1.03; letter-spacing: -.02em; }
.dek { margin: 0; color: var(--muted); font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; line-height: 1.45; }
.meta { margin: 1.5rem 0 3rem; color: #8b8173; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.article-body { background: var(--white); border: 1px solid var(--line); padding: clamp(1.5rem, 5vw, 3.5rem); }
.article-body h2 { margin: 2.2rem 0 .5rem; font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; line-height: 1.2; }
.article-body h2:first-child { margin-top: 0; }
.article-body p { margin: 0 0 1.15rem; }
.article-body ul, .article-body ol { padding-left: 1.3rem; }
.article-body li { margin-bottom: .65rem; }
.article-body strong { font-weight: 600; }
.callout { margin: 2rem 0; padding: 1.25rem 1.4rem; border-left: 3px solid var(--accent); background: color-mix(in srgb, var(--accent) 7%, var(--white)); }
.product-cta { margin-top: 2.5rem; padding: 1.8rem; background: #141210; color: #f5f0e8; }
.product-cta h2 { margin: 0 0 .5rem; color: #fffdf9; }
.product-cta p { color: #c8bfb0; }
.button { display: inline-block; background: var(--accent); color: #fff; text-decoration: none; padding: .7rem 1.1rem; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.back { display: inline-block; margin-top: 2rem; color: #7a5e1e; text-decoration: none; border-bottom: 1px solid #c9a84c; }
footer { padding: 2rem 1.5rem; background: #141210; color: #c8bfb0; text-align: center; font-size: .8rem; }
footer a { color: #e2c97e; }
@media (max-width: 620px) {
  .site-nav { align-items: flex-start; }
  .site-nav-links { gap: .8rem; flex-wrap: wrap; justify-content: flex-end; }
  .article-shell { padding-top: 3.5rem; }
}
