@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --bg:      #faf9f7;
  --bg2:     #f3f1ed;
  --text:    #1a1814;
  --muted:   #9a9590;
  --line:    #e5e1da;
  --gold:    #b8955a;
  --radius:  8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
}

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0;
  background: rgba(250,249,247,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.header-row {
  display: flex; align-items: center;
  justify-content: space-between; padding: 20px 0;
}
.brand {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 18px; font-weight: 400;
  letter-spacing: 0.02em; color: var(--text);
  transition: color 0.2s;
}
.brand:hover { color: var(--gold); }
.brand-accent { color: var(--gold); font-style: italic; }

.nav {
  display: flex; gap: 28px;
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.06em; color: var(--muted);
}
.nav a { transition: color 0.2s; }
.nav a:hover { color: var(--text); text-decoration: none; }

/* ── HERO ── */
.hero { padding: 80px 0 52px; }

.hero-eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}

.hero h1 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  letter-spacing: -0.03em;
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  margin-top: 18px; font-size: 14px;
  color: var(--muted); max-width: 380px; line-height: 1.75;
}
.hero-rule {
  width: 36px; height: 1px;
  background: var(--gold); opacity: 0.45; margin-top: 40px;
}

/* ── GRID ── */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; padding: 0 0 72px;
}
@media (max-width: 760px) { .grid { grid-template-columns: repeat(2,1fr); gap: 14px; } }
@media (max-width: 480px) { .grid { grid-template-columns: 1fr; } }

/* ── CARD ── */
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.28s, transform 0.28s, border-color 0.28s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(26,24,20,0.09);
  border-color: transparent;
}
.card-link { display: block; }
.card-link:hover { text-decoration: none; color: inherit; }

.card-image {
  height: 216px; background: var(--bg2);
  overflow: hidden; position: relative;
}
.card-image img { transition: transform 0.5s ease; }
.card:hover .card-image img { transform: scale(1.05); }
.card-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); opacity: 0.4;
}

.card-body { padding: 20px 20px 24px; }

.card-kicker {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.card-title {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 20px; font-weight: 400;
  line-height: 1.25; color: var(--text); margin-bottom: 8px;
}

.card-desc {
  font-size: 13px; color: var(--muted);
  line-height: 1.65; margin-bottom: 16px;
}
.card-meta { font-size: 11px; color: var(--muted); opacity: 0.55; }

/* ── ABOUT / FOOTER ── */
.about {
  padding: 28px 0 64px;
  border-top: 1px solid var(--line);
}
.about p { font-size: 12px; color: var(--muted); max-width: 520px; }

.site-footer { border-top: 1px solid var(--line); padding: 24px 0; }
.footer-row {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 14px; color: var(--muted);
}
.footer-brand em { font-style: italic; color: var(--gold); }
.footer-copy { font-size: 11px; color: var(--muted); opacity: 0.45; }

/* ── POST ── */
.post { padding: 40px 0 80px; max-width: 680px; }

.breadcrumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 24px;
}
.breadcrumbs a { color: var(--muted); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--gold); text-decoration: none; }

.post h1 {
  font-family: 'DM Sans', system-ui, sans-serif;
  /* font-size: clamp(28px, 4vw, 44px); */
  font-weight: 400;
  line-height: 1.15; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 12px;
}
.post-intro { font-size: 14px; color: var(--muted); line-height: 1.75; }

.rule { border: none; border-top: 1px solid var(--line); margin: 32px 0; }

.section { margin-bottom: 8px; }
.section h2 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
}
.section-sub { font-size: 13px; color: var(--muted); margin-bottom: 20px; }

/* ── PRODUCTS ── */
.product-list {
  display: flex; flex-direction: column;
  gap: 10px; margin-top: 16px;
}
.product {
  display: grid; grid-template-columns: 126px 1fr;
  gap: 16px; padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--bg);
  transition: border-color 0.2s, background 0.2s;
}
.product:hover { border-color: rgba(184,149,90,0.3); background: var(--bg2); }

.product-media {
  width: 120px; height: 120px;
  border-radius: 6px; overflow: hidden;
  background: var(--bg2); border: 1px solid var(--line);
  display: grid; place-items: center; flex-shrink: 0;
}
.img-placeholder {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); opacity: 0.45;
}

.product-title { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.product-desc { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 10px; }
.product-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center;
  padding: 7px 15px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
  color: var(--text); transition: all 0.2s; text-decoration: none !important;
}
.btn:hover {
  background: var(--text); color: var(--bg);
  border-color: var(--text); text-decoration: none;
}
.product-tip { font-size: 11px; color: var(--muted); opacity: 0.65; }

/* ── LISTS ── */
.clean-list {
  list-style: none; padding: 0; margin-top: 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.clean-list li {
  font-size: 13px; color: var(--muted);
  padding-left: 16px; position: relative; line-height: 1.65;
}
.clean-list li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 5px; height: 1px; background: var(--gold); opacity: 0.6;
}
.clean-list li strong { color: var(--text); font-weight: 500; }

/* ── NOTICE ── */
.notice {
  margin-top: 12px; padding: 14px 16px;
  border-radius: var(--radius); background: var(--bg2);
  border: 1px solid var(--line);
  font-size: 12px; color: var(--muted);
}
.notice strong { color: var(--text); font-weight: 500; }

/* ── BACK ── */
.back-row { margin-top: 36px; }
.back-link {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); transition: color 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.back-link::before { content: '←'; }
.back-link:hover { color: var(--gold); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
  .product { grid-template-columns: 1fr; }
  .product-media { width: 100%; height: 160px; }
  .footer-brand { display: none; }
  .hero { padding: 52px 0 36px; }
}