:root {
  --ink: #3a241c;
  --ink-2: #4a3228;
  --paper: #f7efe4;
  --card: #fff8f0;
  --muted: #6e584c;
  --line: rgba(58, 36, 28, 0.12);
  --rose: #c47a6a;
  --rose-d: #a85f52;
  --butter: #e8c9a0;
  --header: 80px;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --max: 1120px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  width: 100% !important;
  max-width: none !important;
}

body {
  margin: 0 !important;
  width: 100% !important;
  max-width: none !important;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 1.04rem;
}

.wp-site-blocks,
.wp-site-blocks > * {
  width: 100% !important;
  max-width: none !important;
}

body .is-layout-constrained,
body .is-layout-constrained > * {
  max-width: none !important;
}

.site-header,
main#contenido,
.site-footer,
.demo-bar {
  width: 100% !important;
  max-width: none !important;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
}
.skip:focus { top: 12px; }

.demo-bar {
  margin: 0;
  padding: 8px 16px;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  background: var(--ink);
  color: rgba(255,255,255,0.78);
}
.demo-bar a { color: var(--butter); text-decoration: underline; text-underline-offset: 3px; }

.wrap {
  box-sizing: border-box;
  width: min(1120px, calc(100% - 48px)) !important;
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  position: relative;
  background: rgba(247, 239, 228, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}
.site-header.is-on { border-bottom-color: var(--line); }

.header-row {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.brand small {
  margin-top: 5px;
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  color: var(--rose-d);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  justify-content: flex-end;
}
.nav a { font-size: 0.92rem; color: var(--muted); white-space: nowrap; }
.nav a:hover { color: var(--ink); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 650;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
}
.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--rose-d);
  outline-offset: 3px;
}
.btn-fill { background: var(--ink); color: #fff; }
.btn-fill:hover { background: var(--ink-2); }
.btn-line { background: transparent; border-color: var(--ink); color: var(--ink); }

.hero { padding: 0; }
.hero-media img {
  width: 100%;
  height: min(58vh, 560px);
  min-height: 280px;
  object-fit: cover;
  object-position: 50% 55%;
}
.hero-copy { padding: 40px 0 28px; max-width: 40rem; }
.eyebrow {
  margin: 0 0 12px;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-d);
  font-weight: 650;
}
h1, h2 {
  font-family: var(--serif);
  font-weight: 550;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 14px;
}
h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
h3 { margin: 0 0 8px; font-size: 1.15rem; font-family: var(--serif); }
.lede { color: var(--muted); font-size: 1.12rem; max-width: 40rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.band {
  background: var(--ink);
  color: #f7efe4;
  padding: 40px 0;
}
.nums {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.nums strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 550;
  margin-bottom: 8px;
}
.nums span { color: rgba(255,255,255,0.68); font-size: 0.95rem; }

.section { padding: 80px 0; }
.section.alt { background: var(--card); }

.vitrina {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.card {
  background: var(--paper);
  padding: 0 0 18px;
}
.section.alt .card { background: var(--paper); }
.card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 14px;
}
.card h3, .card p, .card .price { padding: 0 14px; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.price {
  margin-top: 10px;
  font-weight: 650;
  color: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}
.ticks { list-style: none; padding: 0; margin: 20px 0 0; }
.ticks li { margin: 8px 0; color: var(--muted); }
.ticks li::before { content: "— "; color: var(--rose-d); }

.split-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.form { display: grid; gap: 14px; }
.form label { display: grid; gap: 6px; font-size: 0.88rem; color: var(--muted); }
.form input,
.form textarea {
  font: inherit;
  border: 1px solid var(--line);
  background: var(--card);
  padding: 12px;
  min-height: 48px;
}
.form textarea { min-height: 120px; resize: vertical; }
.form-note {
  display: none;
  padding: 12px 14px;
  background: #ece4d8;
  border-left: 2px solid var(--rose);
}
.form-note.is-on { display: block; }
.contact-side { color: var(--muted); }
.fine { font-size: 0.9rem; color: var(--muted); margin-top: 20px; }

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.68);
  padding: 48px 0 24px;
}
.brand-foot {
  font-family: var(--serif);
  letter-spacing: 0.12em;
  color: #fff;
  font-size: 1.3rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
.foot-links { display: grid; gap: 8px; }
.legal {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
  font-size: 0.88rem;
}
.legal a { color: var(--butter); }

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1f3d32;
  color: #dce8e2;
  z-index: 50;
}

article.wrap.legal-page { padding: 56px 0 88px; max-width: 720px; }

@media (max-width: 980px) {
  .vitrina { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nums, .split, .split-form, .foot-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: var(--header);
    background: var(--card);
    border: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 8px;
  }
  .nav.is-open { display: flex; }
  .site-header { position: sticky; }
  .vitrina { grid-template-columns: 1fr; }
}
