:root {
  --paper: #fff8ec;
  --card: #fffdf8;
  --ink: #3a2a18;
  --muted: #6d5a42;
  --sun: #f4b942;
  --sun-deep: #e08a1e;
  --line: #ead9b8;
  --ok: #2f8a5a;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(1000px 420px at 8% -20%, #ffe7a8 0%, transparent 60%), var(--paper);
  line-height: 1.55;
}
h1, h2, h3 { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; letter-spacing: -0.02em; }
a { color: var(--sun-deep); }
.wrap { max-width: 960px; margin: 0 auto; padding: 1.2rem 1rem 6rem; }
.top {
  position: sticky; top: 0; z-index: 20;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 0.8rem 1rem; border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 85%, transparent); backdrop-filter: blur(8px);
}
.brand { display: flex; gap: 0.7rem; align-items: center; text-decoration: none; color: inherit; }
.sun {
  width: 2.4rem; height: 2.4rem; border-radius: 50%; background: var(--sun);
  box-shadow: 0 0 0 4px #ffe08a, 0 0 18px #f4b94288; flex: none;
}
nav a { margin-left: 1rem; text-decoration: none; color: var(--ink); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--sun); color: var(--ink); text-decoration: none;
  padding: 0.7rem 1.1rem; border-radius: 999px; font-weight: 700;
  border: 2px solid #d89a22; min-height: 2.8rem;
}
.btn.ghost { background: transparent; }
.btn.wide { width: 100%; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; list-style: none; padding: 0; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 1rem; overflow: hidden;
  text-decoration: none; color: inherit; display: block;
}
.card img, .card video { width: 100%; height: 180px; object-fit: cover; display: block; background: #f3e6c8; }
.card .pad { padding: 0.9rem 1rem 1.1rem; }
.price { font-size: 1.25rem; font-weight: 700; color: var(--sun-deep); }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.15; }
.lede { color: var(--muted); font-size: 1.15rem; max-width: 36rem; }
.cta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.2rem 0; }
footer { border-top: 1px solid var(--line); padding: 1.5rem 1rem 5.5rem; text-align: center; color: var(--muted); }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.6rem; margin: 0 0 2rem; }
.gallery figure { margin: 0; background: var(--card); border-radius: 0.8rem; overflow: hidden; border: 1px solid var(--line); }
.gallery img, .gallery video { width: 100%; height: 180px; object-fit: cover; display: block; background: #f3e6c8; }
.gallery figcaption { padding: 0.4rem 0.6rem 0.6rem; font-size: 0.85rem; color: var(--muted); }
.product-shots img { height: 220px; }
.hits { color: var(--ink); text-decoration: none; font-weight: 600; }
.hits strong { color: var(--sun-deep); }
.mbar {
  position: fixed; inset: auto 0 0 0; display: flex; border-top: 1px solid var(--line);
  background: var(--card); z-index: 30;
}
.mbar a { flex: 1; text-align: center; padding: 0.7rem 0 1rem; text-decoration: none; color: var(--ink); font-size: 0.75rem; font-weight: 700; }
form.lead label { display: block; margin: 0.7rem 0; font-weight: 600; }
form.lead input, form.lead select, form.lead textarea {
  width: 100%; margin-top: 0.3rem; padding: 0.75rem; border-radius: 0.75rem; border: 1px solid var(--line); font: inherit;
}
.flash-ok { background: #e7f6ee; color: var(--ok); padding: 0.8rem 1rem; border-radius: 0.8rem; }
.flash-err { background: #fde8e8; color: #8a1f1f; padding: 0.8rem 1rem; border-radius: 0.8rem; }
form.lead .hint { display: block; font-weight: 500; color: var(--muted); font-size: 0.85rem; margin-top: 0.3rem; }
form.lead input[type="file"] { padding: 0.55rem; background: #fff; }
.cf-turnstile-wrap { margin: 0.9rem 0 1.1rem; min-height: 65px; }
.hp { position: absolute; left: -9999px; }
@media (min-width: 640px) { .mbar { display: none; } footer { padding-bottom: 2rem; } }
