:root {
  --bg: #f6f1e8;
  --paper: #fffdf8;
  --ink: #1f1a17;
  --muted: #5c534c;
  --rose: #7a3142;
  --rose-deep: #5c2432;
  --leaf: #3e5a44;
  --gold: #a4844e;
  --line: rgba(31, 26, 23, 0.12);
  --shadow: 0 18px 40px rgba(31, 26, 23, 0.08);
  --radius: 18px;
  --max: 1180px;
  --header: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img, video { max-width: 100%; display: block; }
a { color: var(--rose); }
a:hover { color: var(--rose-deep); }
h1, h2, h3, .logo, .price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); margin: 0 0 0.4em; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0 0 0.5em; }
h3 { font-size: 1.45rem; margin: 0 0 0.4em; }
p { color: var(--muted); }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus {
  left: 8px;
  background: #fff;
  padding: 8px 12px;
  z-index: 100;
}

.topbar {
  background: var(--leaf);
  color: #f4efe6;
  font-size: 0.86rem;
  text-align: center;
  padding: 8px 16px;
}
.topbar span { display: inline-block; margin: 0 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
}
.logo {
  color: var(--ink);
  text-decoration: none;
  font-size: 1.55rem;
  line-height: 1;
}
.logo small {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: center;
}
.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
}
.nav a[aria-current="page"], .nav a:hover { color: var(--rose); }
.nav .legal-drop { position: relative; }
.nav .legal-drop summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.95rem;
}
.nav .legal-drop summary::-webkit-details-marker { display: none; }
.nav .legal-drop div {
  position: absolute;
  right: 0;
  top: 130%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  min-width: 180px;
  padding: 8px;
  box-shadow: var(--shadow);
}
.nav .legal-drop div a {
  display: block;
  padding: 8px 10px;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 10px;
  padding: 8px 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}
.btn-primary { background: var(--rose); color: #fff; }
.btn-primary:hover { background: var(--rose-deep); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-whatsapp { background: #128c7e; color: #fff; }
.btn-whatsapp:hover { color: #fff; background: #0e6e63; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: end stretch;
  overflow: hidden;
  color: #fff;
}
.hero video, .hero .fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 12, 10, 0.15), rgba(20, 12, 10, 0.72));
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 20px 48px;
  width: 100%;
}
.hero-copy p, .hero-copy h1 { color: #f7f1e8; }
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.hero .actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero .note { font-size: 0.9rem; max-width: 46ch; }

.section { padding: 72px 0; }
.grid-3, .grid-4, .products {
  display: grid;
  gap: 22px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.products { grid-template-columns: repeat(3, 1fr); }
.card, .product-card, .legal-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card { padding: 24px; }
.card img { border-radius: 12px; height: 180px; width: 100%; object-fit: cover; margin-bottom: 14px; }
.product-card img { height: 250px; width: 100%; object-fit: cover; }
.product-card .body { padding: 18px; }
.price {
  font-size: 1.6rem;
  color: var(--rose-deep);
  margin: 8px 0;
}
.meta { font-size: 0.85rem; color: var(--muted); }
.badge {
  display: inline-block;
  background: #efe4d3;
  color: var(--leaf);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.75rem;
}

.explore-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 16px;
}
.tile {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
}
.tile img { width: 100%; height: 100%; object-fit: cover; }
.tile span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(255, 253, 248, 0.92);
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink);
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 28px;
}
.filters button {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font: inherit;
}
.filters button.active { background: var(--ink); color: #fff; }

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
  padding: 40px 0 72px;
}
.product-layout img { border-radius: var(--radius); width: 100%; }
.specs { width: 100%; border-collapse: collapse; margin: 18px 0; }
.specs th, .specs td {
  text-align: left;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  font-size: 0.95rem;
}
.qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
}
.qty input {
  width: 72px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.page-hero {
  padding: 56px 0 10px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.split video, .split img { border-radius: var(--radius); width: 100%; }

form {
  display: grid;
  gap: 12px;
  background: var(--paper);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
label { font-size: 0.92rem; }
input, select, textarea {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: #fff;
}
.consent { display: flex; gap: 10px; align-items: flex-start; }
.consent input { width: auto; margin-top: 4px; }
.error { color: #9b1c2c; font-size: 0.9rem; }
.ok {
  background: #e8f4ea;
  border: 1px solid #b7d7be;
  padding: 16px;
  border-radius: 12px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
}
.table th, .table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.legal-copy { max-width: 800px; }
.legal-copy h2 { margin-top: 1.6em; }
.policy-list { display: grid; gap: 12px; }
.policy-item {
  background: var(--paper);
  border-left: 4px solid var(--leaf);
  padding: 16px 18px;
  border-radius: 8px;
}

.site-footer {
  background: #241c19;
  color: #efe7dc;
  padding: 48px 0 24px;
  margin-top: 40px;
}
.site-footer a { color: #f0d9b0; }
.site-footer p, .site-footer li { color: #d9cfc3; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 8px 0; }
.tiny { font-size: 0.82rem; margin-top: 28px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px; }

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
  max-width: 1100px;
  margin: 0 auto;
}
.cookie-bar.show { display: flex; }
.cookie-bar p { margin: 0; font-size: 0.9rem; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.hidden { display: none !important; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav { display: none; flex-direction: column; align-items: flex-start; width: 100%; }
  .nav.open { display: flex; }
  .nav-wrap { flex-wrap: wrap; }
  .grid-3, .grid-4, .products, .explore-grid, .product-layout, .split, .footer-grid {
    grid-template-columns: 1fr;
  }
  .cookie-bar { flex-direction: column; align-items: stretch; }
}
