:root {
  --cream: #f7f1ea;
  --cream-deep: #efe6db;
  --ink: #2a2420;
  --muted: #6b5e55;
  --rose: #c47a7a;
  --rose-deep: #a85f5f;
  --line: #e4d8cc;
  --card: #fffdf9;
  --glass: rgba(247, 241, 234, 0.78);
  --glass-scrolled: rgba(247, 241, 234, 0.92);
  --radius: 14px;
  --tap: 48px;
  --nav-h: 4.4rem;
  --shadow: 0 8px 28px rgba(42, 36, 32, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { color-scheme: light; scroll-behavior: smooth; }
html, body { background: var(--cream); color: var(--ink); }
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  padding-top: var(--nav-h);
  min-height: 100dvh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
ul { list-style: none; }
.wrap { width: min(1100px, calc(100% - 2rem)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .28s ease, background .28s ease;
  transform: translateY(0);
}
.nav.is-scrolled { background: var(--glass-scrolled); }
.nav.is-away { transform: translateY(-110%); pointer-events: none; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: .8rem; min-height: var(--nav-h); padding-block: .55rem;
}
.brand {
  font-weight: 700; letter-spacing: .02em; font-size: 1.05rem;
  white-space: nowrap;
}
.brand span { color: var(--rose); }
.nav-links {
  display: none; align-items: center; gap: 1.1rem; font-size: .92rem; font-weight: 500;
}
.nav-links a:hover { color: var(--rose-deep); }
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 40px; padding: 0 1rem; border-radius: 999px;
  background: var(--rose); color: #fff; font-weight: 650; font-size: .88rem;
}
.nav-cta:hover { background: var(--rose-deep); }
.burger {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 10px; border: 1px solid var(--line);
}
.burger span {
  display: block; width: 18px; height: 2px; background: var(--ink);
  position: relative;
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.nav.is-open .nav-links {
  display: flex; flex-direction: column; align-items: stretch;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--cream); padding: 1rem 1.25rem 1.25rem;
  border-bottom: 1px solid var(--line); gap: .85rem;
}
.nav.is-open { transform: translateY(0); pointer-events: auto; }

@media (min-width: 860px) {
  .burger { display: none; }
  .nav-links { display: flex; }
  .nav-links .nav-cta { margin-left: .4rem; }
}

/* Hero */
.hero {
  background: linear-gradient(160deg, #f0e4d8 0%, #f7f1ea 45%, #f3e8e4 100%);
  min-height: 68svh;
  display: grid; align-items: center;
  padding: 2.4rem 0 3rem;
}
.hero-eyebrow {
  color: var(--rose); font-size: .78rem; font-weight: 650;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: .7rem;
}
.hero h1 {
  font-size: clamp(1.85rem, 5.5vw, 3rem);
  line-height: 1.15; font-weight: 750; max-width: 14ch; margin-bottom: .85rem;
}
.hero-sub {
  font-size: 1.05rem; color: var(--muted); max-width: 36ch; margin-bottom: 1.4rem;
}
.hero-cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: var(--tap); padding: 0 1.4rem; border-radius: 999px;
  background: var(--rose); color: #fff; font-weight: 700;
}
.hero-cta:hover { background: var(--rose-deep); }
.hero-proof {
  margin-top: .9rem; color: var(--muted); font-size: .9rem;
  display: grid; gap: .25rem;
}

/* Sections */
.section { padding: 3.2rem 0; }
.section-alt { background: var(--cream-deep); }
.section h2, .display {
  font-size: clamp(1.55rem, 3.8vw, 2.15rem);
  font-weight: 750; line-height: 1.2; margin-bottom: .55rem;
  color: var(--rose-deep);
}
.lead { color: var(--muted); max-width: 42ch; margin-bottom: 1.5rem; }

/* Categories */
.cat-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem;
}
@media (min-width: 640px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
.cat-tile {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem .9rem; text-align: center; font-weight: 600; font-size: .92rem;
  box-shadow: var(--shadow); transition: transform .2s ease, border-color .2s;
}
.cat-tile:hover { transform: translateY(-2px); border-color: var(--rose); color: var(--rose-deep); }

/* Product cards */
.chips {
  display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.3rem;
}
.chip {
  display: inline-flex; align-items: center; min-height: 36px; padding: 0 .85rem;
  border-radius: 999px; border: 1px solid var(--line); background: var(--card);
  font-size: .82rem; font-weight: 600; color: var(--muted);
}
.chip.is-on, .chip:hover { background: var(--rose); border-color: var(--rose); color: #fff; }
.prod-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem;
}
@media (min-width: 720px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .prod-grid { grid-template-columns: repeat(4, 1fr); } }
.pcard {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow);
}
.pcard-ph {
  aspect-ratio: 4 / 5; background: linear-gradient(145deg, #e8ddd2, #dccfc3);
  display: grid; place-items: center; color: var(--muted); font-size: .78rem;
  font-weight: 650; text-align: center; padding: .8rem; letter-spacing: .04em;
  text-transform: uppercase;
}
.pcard-body { padding: .85rem .9rem 1rem; display: grid; gap: .35rem; flex: 1; }
.pcard-cat { font-size: .72rem; color: var(--rose); font-weight: 650; letter-spacing: .06em; text-transform: uppercase; }
.pcard-name { font-weight: 700; font-size: .98rem; }
.pcard-price { color: var(--ink); font-weight: 700; }
.pcard-ask {
  margin-top: .45rem; display: inline-flex; align-items: center; justify-content: center;
  min-height: 40px; border-radius: 999px; border: 1px solid var(--rose);
  color: var(--rose-deep); font-weight: 650; font-size: .84rem;
}
.pcard-ask:hover { background: var(--rose); color: #fff; }
.empty { color: var(--muted); padding: 1rem 0; }

/* Forms / contact */
.stack { display: grid; gap: .55rem; }
.form {
  display: grid; gap: .85rem; max-width: 480px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem; box-shadow: var(--shadow);
}
.form label { font-size: .78rem; font-weight: 650; color: var(--muted); letter-spacing: .04em; }
.form input, .form select, .form textarea {
  width: 100%; min-height: var(--tap); border: 1px solid var(--line);
  background: #fff; border-radius: 10px; padding: .7rem .85rem;
}
.form textarea { min-height: 110px; resize: vertical; }
.form .btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: var(--tap); border-radius: 999px; background: var(--rose);
  color: #fff; font-weight: 700;
}
.form .btn:hover { background: var(--rose-deep); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 1.15rem; border-radius: 999px;
  font-weight: 700; font-size: .92rem;
}
.btn-line {
  border: 1.5px solid var(--rose); color: var(--rose-deep); background: transparent;
}
.btn-line:hover { background: var(--rose); color: #fff; }

.map {
  display: block; width: 100%; margin-top: 1rem;
  height: 280px; min-height: 280px; border: 0;
  border-radius: var(--radius); overflow: hidden;
  background: var(--line);
}

.socials { display: flex; flex-wrap: wrap; gap: .6rem; }
.socials a {
  display: inline-flex; align-items: center; min-height: 42px; padding: 0 1rem;
  border-radius: 999px; border: 1px solid var(--line); background: var(--card);
  font-weight: 600; font-size: .9rem;
}
.socials a:hover { border-color: var(--rose); color: var(--rose-deep); }

.footer {
  padding: 2rem 0 calc(2rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem;
}
.footer a { color: var(--rose-deep); font-weight: 650; }
.footer-row {
  display: flex; flex-wrap: wrap; gap: .8rem 1.2rem;
  justify-content: space-between; align-items: center;
}

.wa-float {
  position: fixed; right: 1rem; bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 40; display: inline-flex; align-items: center; gap: .45rem;
  min-height: 48px; padding: 0 1rem; border-radius: 999px;
  background: #25d366; color: #fff; font-weight: 700; box-shadow: var(--shadow);
}
.wa-float:hover { filter: brightness(.95); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .nav, .cat-tile { transition: none; }
}