/* Home Stay OS — static portal (forest / sand / coral) */
:root {
  --bg: #FAF9F6;
  --ink: #2F5D50;
  --sand: #E6D5B8;
  --coral: #E07A5F;
  --card: #FFFDF8;
  --muted: rgba(47, 93, 80, 0.72);
  --line: rgba(26, 42, 38, 0.12);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  --whatsapp: #25D366;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); font-family: Georgia, "Times New Roman", serif; }
body { line-height: 1.6; }
a { color: inherit; }
img { max-width: 100%; display: block; object-fit: cover; }
button { font-family: inherit; }
[hidden] { display: none !important; }
.wrap { width: min(1080px, calc(100% - 2.5rem)); margin: 0 auto; }
.wide { width: min(1152px, calc(100% - 2rem)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 0.75rem 1rem; padding: 0.7rem 0;
}
.brand {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none;
  order: 1;
}
.brand-mark { width: 40px; height: 40px; display: block; flex-shrink: 0; }
.brand-mark-sm { width: 22px; height: 22px; }
.wordmark {
  color: #8F4E22;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.mark {
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-family: system-ui, sans-serif; font-size: 0.62rem; letter-spacing: 0.06em;
}
nav.primary {
  display: flex; align-items: center; gap: 0.15rem 1.05rem;
  flex-wrap: wrap;
  order: 2;
  margin-left: auto;
}
nav.primary a:not(.btn) {
  text-decoration: none;
  color: var(--ink);
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 0;
}
nav.primary a:not(.btn):hover { color: #8F4E22; }
nav.primary .btn {
  padding: 0.48rem 1.05rem;
  font-size: 0.85rem;
  font-weight: 600;
}
nav.primary a.btn-primary,
nav.primary a.btn-primary:hover,
nav.primary a.btn-primary:focus-visible {
  color: #fff;
  background: var(--ink);
}
nav.primary a.btn-primary:hover { background: #264a40; }
.nav-toggle {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  order: 3;
  margin-left: auto;
  border: 1px solid transparent;
  background: var(--sand);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.48rem 0.9rem 0.48rem 0.65rem;
  font-family: system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}
.nav-toggle:hover { background: #dcc7a3; }
.nav-toggle-icon {
  position: relative;
  display: block;
  width: 1.05rem;
  height: 0.72rem;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
}
.nav-toggle-icon::before { top: 0; box-shadow: 0 5px currentColor; }
.nav-toggle-icon::after { bottom: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  top: 5px;
  box-shadow: none;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  bottom: 5px;
  transform: rotate(-45deg);
}
.crumbs {
  font-family: system-ui, sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.8rem 0 0;
}
.crumbs a { text-decoration: none; }
@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  nav.primary {
    display: none;
    order: 4;
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.35rem 0 0.15rem;
  }
  nav.primary.is-open { display: flex; }
  nav.primary a:not(.btn) { padding: 0.7rem 0.15rem; }
  nav.primary .btn { width: 100%; margin-top: 0.35rem; }
}

.eyebrow {
  font-family: system-ui, sans-serif; font-size: 0.75rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--coral);
  margin-bottom: 0.8rem;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.3rem); line-height: 1.08; max-width: 14ch; }
h1.page-title { font-size: clamp(1.6rem, 3vw, 2.2rem); max-width: 22ch; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.15; }
h3 { font-size: 1.2rem; }
.lead { margin-top: 1.15rem; max-width: 38rem; color: var(--muted); font-size: 1.1rem; }
.muted { color: var(--muted); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 0.82rem 1.3rem; text-decoration: none;
  font-family: system-ui, sans-serif; font-size: 0.92rem; border: 0; cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #264a40; color: #fff; }
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { background: #c96a52; color: #fff; }
.btn-sand { background: var(--sand); color: var(--ink); }
.btn-sand:hover { background: #dcc7a3; }
.btn-ghost { border: 1px solid var(--line); background: transparent; color: inherit; }
.btn-ghost:hover { border-color: var(--ink); background: rgba(47, 93, 80, 0.04); }
.btn:focus-visible,
.chip:focus-visible,
.nav-toggle:focus-visible,
nav.primary a:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}
.actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.4rem; }

.search {
  display: grid; gap: 0.55rem;
  grid-template-columns: 1fr;
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  padding: 0.7rem; box-shadow: var(--shadow); margin-top: 1.5rem;
}
@media (min-width: 860px) {
  .search { grid-template-columns: 1.3fr 1fr 1fr 0.8fr auto; align-items: end; }
}
.search label { display: flex; flex-direction: column; gap: 0.28rem; padding: 0.45rem 0.7rem; }
.search span {
  font-family: system-ui, sans-serif; font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}
.search input, .search select {
  border: 0; background: transparent; font: inherit; color: var(--ink); outline: none; width: 100%;
}
.search .btn { height: 3rem; padding-inline: 1.4rem; }

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.chip {
  font-family: system-ui, sans-serif; font-size: 0.85rem;
  background: var(--sand); color: var(--ink); border-radius: 999px;
  padding: 0.35rem 0.8rem; text-decoration: none;
}
.chip:hover { background: #dcc7a3; }

.hero { padding: 1.05rem 0 1.7rem; }
@media (min-width: 860px) {
  .hero { padding: 1.25rem 0 2rem; }
}
.section { padding: 3.2rem 0; }
.grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 1.3rem;
}
.stay { padding: 0; overflow: hidden; box-shadow: var(--shadow); }
.stay img { height: 210px; width: 100%; }
.stay .pad { padding: 1.15rem 1.2rem 1.3rem; }
.price { font-family: system-ui, sans-serif; font-weight: 600; margin: 0.45rem 0 0.8rem; color: var(--coral); }
.meta { font-family: system-ui, sans-serif; font-size: 0.86rem; color: var(--muted); }

.sell {
  background: var(--ink); color: #fff; border-radius: 28px; padding: 2rem 1.6rem;
}
.sell .eyebrow { color: var(--sand); }
.sell p { color: rgba(255,255,255,0.82); max-width: 40rem; margin-top: 0.7rem; }
.sell .btn-ghost {
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.sell .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}

.banner {
  background: var(--sand); border-radius: 24px; padding: 1.4rem 1.3rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: center;
}

form.stack { display: grid; gap: 0.85rem; }
form.stack label { display: grid; gap: 0.3rem; }
form.stack span {
  font-family: system-ui, sans-serif; font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
form.stack input, form.stack select, form.stack textarea {
  width: 100%; padding: 0.75rem 0.85rem; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; font: inherit; color: var(--ink);
}
form.stack input:focus, form.stack select:focus, form.stack textarea:focus {
  outline: 2px solid var(--coral); outline-offset: 1px;
}
.status { min-height: 1.2rem; font-family: system-ui, sans-serif; font-size: 0.92rem; }
.ok { color: #176b3a; }
.err { color: #9b1c1c; }

footer.site {
  border-top: 1px solid var(--line); padding: 1.5rem 0 2.2rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  color: var(--muted); font-family: system-ui, sans-serif; font-size: 0.85rem;
}
footer.site .footer-brand {
  display: flex; align-items: center; gap: 0.45rem;
  color: var(--ink); font-weight: 700; letter-spacing: -0.02em;
}
.empty { padding: 1.4rem; border: 1px dashed var(--line); border-radius: 18px; color: var(--muted); }
