:root {
  --ink: #1a2412;
  --muted: #5d6a4a;
  --line: #d7e0c2;
  --bg: #f3f5ea;
  --card: #fffcf4;
  --accent: #c9a227;
  --accent-ink: #1a2412;
  --chip: #e8efd0;
  --chip-ink: #2a351c;
  --ok: #3d6b2c;
  --err: #9b2c2c;
  --banner-bg: #f4e7a8;
  --banner-ink: #4a3d08;
  --hero-fg: #fffcf4;
  --overlay: linear-gradient(180deg, rgba(26,36,18,.02), rgba(26,36,18,.78));
  --secret-bg: #1a2412;
  --secret-ink: #f3f5ea;
  --nav-bg: #fffcf4;
  --top-bg: rgba(243,245,234,.96);
  --zest: #e0c34a;
  --leaf: #6a8a3e;
  --focus: #1a2412;
  --line-w: 1px;
  --shadow: 0 8px 20px rgba(26,36,18,.07);
  --pad: max(10px, env(safe-area-inset-left));
  --pad-end: max(10px, env(safe-area-inset-right));
  --buy: 72px;
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; width: 100%; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: "Avenir Next", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 280px at 10% -10%, color-mix(in srgb, var(--zest) 28%, transparent), transparent 60%),
    var(--bg);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body.has-buy { padding-bottom: calc(var(--buy) + env(safe-area-inset-bottom)); }
[dir="rtl"] { text-align: right; }
a { color: var(--leaf); }
img { max-width: 100%; display: block; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.banner {
  background: var(--banner-bg);
  color: var(--banner-ink);
  padding: 6px var(--pad);
  text-align: center;
  font-size: 12px;
  font-weight: 650;
}
.chrome {
  position: sticky;
  top: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: none;
  padding: 6px max(12px, calc((100% - 1110px) / 2));
  background: var(--top-bg);
  backdrop-filter: blur(10px);
  border-bottom: var(--line-w) solid var(--line);
  box-shadow: inset 0 3px 0 var(--zest);
}
.utils { display: flex; align-items: center; gap: 6px; flex: 0 0 auto; }
.lang select, .util {
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  border: var(--line-w) solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--card);
  color: var(--ink);
  min-height: 36px;
}
.util { cursor: pointer; }
.util[aria-pressed="true"] {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.nav2 {
  display: flex;
  flex: 1;
  min-width: 0;
  gap: 4px;
}
.nav2 a {
  flex: 1;
  color: var(--muted);
  text-decoration: none;
  text-align: center;
  padding: 8px 6px;
  font-size: 12px;
  font-weight: 700;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  line-height: 1.2;
}
.nav2 a.on {
  color: var(--ink);
  background: var(--chip);
  box-shadow: inset 0 -2px 0 var(--zest);
}
#root { width: 100%; }
.hero { position: relative; width: 100%; background: var(--ink); color: var(--hero-fg); border-radius: 16px; overflow: hidden; }
.hero img { width: 100%; height: 34vw; min-height: 160px; max-height: 260px; object-fit: cover; cursor: pointer; }
.hero .copy {
  position: absolute;
  inset: auto 0 0;
  padding: 12px var(--pad) 14px;
  background: var(--overlay);
  color: var(--hero-fg);
}
.hero .copy p { margin: 0; font-size: 13px; }
.hero .copy .muted { color: color-mix(in srgb, var(--hero-fg) 78%, transparent); }
.hero h1 {
  margin: 2px 0 4px;
  font-family: Palatino, "Palatino Linotype", "Iowan Old Style", Georgia, serif;
  font-size: clamp(1.35rem, 4vw, 2.1rem);
  line-height: 1.1;
  font-weight: 600;
}
.wrap {
  width: 100%;
  margin: 0;
  padding: 10px var(--pad) 18px;
}
h2, h3 {
  font-family: Palatino, "Palatino Linotype", "Iowan Old Style", Georgia, serif;
  font-weight: 600;
  letter-spacing: -.02em;
  margin: 14px 0 8px;
  font-size: 1.15rem;
}
h2::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-inline-end: 7px;
  background: var(--zest);
  border-radius: 1px 6px 1px 6px;
  vertical-align: 1px;
}
.card {
  background: var(--card);
  border: var(--line-w) solid var(--line);
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--shadow);
}
.muted { color: var(--muted); }
.ok { color: var(--ok); }
.err { color: var(--err); min-height: 1.2em; }
.lead { margin: 8px 0 10px; font-size: 15px; line-height: 1.45; }
.pitch { margin: 8px 0 12px; font-size: 15px; line-height: 1.5; }
.pitch p { margin: 0 0 10px; }
.pitch ul, .pitch ol { margin: 0 0 10px; padding-inline-start: 1.2em; }
.pitch h2, .pitch h3 { margin: 12px 0 6px; }
.chips { display: flex; flex-wrap: wrap; gap: 5px; margin: 6px 0 10px; }
.chip {
  font-size: 11px;
  background: var(--chip);
  color: var(--chip-ink);
  border: var(--line-w) solid var(--line);
  border-radius: 999px;
  padding: 3px 8px;
}
.space {
  background: var(--card);
  border: var(--line-w) solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
}
.space img { height: 110px; width: 100%; object-fit: cover; }
.space .body { padding: 8px 10px 10px; }
.space .body p { margin: 4px 0 0; font-size: 13px; }
label { display: block; font-size: 11px; color: var(--muted); margin: 8px 0 3px; }
input, select, textarea {
  width: 100%;
  padding: 9px 10px;
  border: var(--line-w) solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 16px;
  background: var(--card);
  color: var(--ink);
  min-height: 42px;
}
textarea { min-height: 72px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.price { font-size: 1.45rem; font-weight: 800; margin: 0; letter-spacing: -.03em; }
.rules { white-space: pre-wrap; font-size: 14px; }
button, .btn {
  display: block;
  width: 100%;
  background: var(--ink);
  color: var(--bg);
  border: var(--line-w) solid var(--ink);
  border-radius: 12px;
  padding: 11px 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
button.amber, .btn.amber {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
button.secondary, .btn.secondary {
  background: var(--card);
  color: var(--ink);
  border: var(--line-w) solid var(--line);
}
button:disabled { opacity: .55; }
#paypal-box { min-height: 44px; margin-top: 8px; }
.stay { border-top: var(--line-w) solid var(--line); padding-top: 10px; margin-top: 10px; }
.secret {
  font-family: ui-monospace, monospace;
  background: var(--secret-bg);
  color: var(--secret-ink);
  padding: 8px 10px;
  border-radius: 10px;
}
.stay-actions { display: grid; grid-template-columns: 1fr; gap: 8px; margin: 10px 0; }
.stay-actions .btn, .stay-actions button { width: 100%; }
.mosaic {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin: 0 0 10px;
  padding-bottom: 2px;
}
.mosaic img {
  flex: 0 0 38%;
  height: 88px;
  object-fit: cover;
  border-radius: 10px;
  scroll-snap-align: start;
}
button.ghost, .ghost {
  display: inline-block;
  width: auto;
  margin-top: 8px;
  background: transparent;
  color: var(--hero-fg);
  border: var(--line-w) solid color-mix(in srgb, var(--hero-fg) 55%, transparent);
  padding: 7px 12px;
  font-size: 13px;
}
.wheel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin: 0 0 8px;
  padding: 2px 2px 10px;
}
.wheel .review {
  flex: 0 0 min(78vw, 300px);
  scroll-snap-align: start;
  background: var(--card);
  border: var(--line-w) solid var(--line);
  border-radius: 14px;
  padding: 12px;
  margin: 0;
  box-shadow: var(--shadow);
}
.who {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.face {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--chip);
  border: 2px solid var(--zest);
  flex: 0 0 auto;
}
.face-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--ink);
}
.review p { margin: 0; font-size: 14px; line-height: 1.4; }
.buybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  padding: 8px max(12px, calc((100% - 1110px) / 2)) calc(8px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--card) 92%, var(--zest));
  border-top: 3px solid var(--zest);
  box-shadow: 0 -10px 28px rgba(26,36,18,.14);
}
.buybar-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(1110px, 100%);
  margin-inline: auto;
}
.buybar-copy { min-width: 0; flex: 1; }
.buybar-copy .muted { font-size: 11px; }
.buybar .btn {
  width: auto;
  flex: 1.15;
  min-width: 46%;
  padding: 13px 12px;
  font-size: 1rem;
  box-shadow: 0 4px 0 color-mix(in srgb, var(--accent) 55%, #000);
}
.check { display: flex; align-items: flex-start; gap: 8px; margin: 8px 0; }
.check input { width: auto; min-height: 0; }
.tour[hidden] { display: none !important; }
.tour {
  position: fixed;
  inset: 0;
  background: rgba(7,9,5,.94);
  color: #f7f8ef;
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px var(--pad);
}
.tour img { max-height: 70vh; width: 100%; object-fit: contain; }
.tour-x { width: auto; align-self: flex-end; background: transparent; color: #f7f8ef; border: 2px solid #f7f8ef; }
.tour-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.space.rentable { box-shadow: var(--shadow); }
.space.rentable > img { height: 150px; }
.paypal-stay { margin: 10px 0 16px; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
@media (min-width: 860px) {
  .stay-actions { grid-template-columns: 1fr 1fr; }
  .mosaic img { flex-basis: 22%; height: 110px; }
  .hero img { height: 240px; max-height: 240px; }
  .space.rentable > img { height: 180px; }
  .wheel .review { flex-basis: 260px; }
  .buybar { padding-inline: max(12px, calc((100% - 1110px) / 2)); }
  .layout { grid-template-columns: minmax(0, 1fr) 320px; align-items: start; }
  .bookcol { position: sticky; top: 58px; }
}
.page {
  width: min(1110px, calc(100% - 24px));
  margin-inline: auto;
  padding-bottom: 8px;
}
.layout { display: grid; gap: 16px; }
.bookcol .card { margin: 0; }
html[data-motif="lemons"] body::before,
html[data-motif="lemons"] body::after {
  content: "";
  position: fixed;
  z-index: 0;
  pointer-events: none;
  background-image: url("/static/guest/lemons.svg");
  background-repeat: no-repeat;
}
html[data-motif="lemons"] body::before {
  inset: 0;
  opacity: .62;
  background-position: center top;
  background-size: min(1600px, 190%);
}
html[data-motif="lemons"] body::after {
  inset: auto 0 0;
  height: 46vh;
  opacity: .5;
  background-position: center bottom;
  background-size: min(1400px, 170%);
}
html[data-mode="night"][data-motif="lemons"] body::before {
  opacity: .32;
  filter: saturate(1.35) brightness(.78);
}
html[data-mode="night"][data-motif="lemons"] body::after {
  opacity: .26;
  filter: saturate(1.35) brightness(.78);
}
html[data-motif="olive"] body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .28;
  background:
    radial-gradient(circle at 16% 12%, color-mix(in srgb, var(--leaf) 40%, transparent) 0 22px, transparent 23px),
    radial-gradient(circle at 84% 78%, color-mix(in srgb, var(--zest) 35%, transparent) 0 18px, transparent 19px);
  background-size: 260px 200px;
}
html[data-motif="linen"] body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .18;
  background: repeating-linear-gradient(90deg, transparent, transparent 11px, color-mix(in srgb, var(--line) 70%, transparent) 12px);
}
.banner, #root, .buybar { position: relative; z-index: 1; }
.switch {
  position: relative;
  width: 46px;
  height: 26px;
  flex: 0 0 46px;
}
.switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.slider {
  position: absolute;
  inset: 0;
  background: var(--chip);
  border: var(--line-w) solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}
.slider:before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  inset-inline-start: 2px;
  top: 1px;
  background: var(--zest);
  border-radius: 50%;
  transition: transform .18s ease;
}
.switch input:checked + .slider { background: var(--ink); border-color: var(--ink); }
.switch input:checked + .slider:before { transform: translateX(20px); }
[dir="rtl"] .switch input:checked + .slider:before { transform: translateX(-20px); }
.am-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 8px;
  margin: 8px 0 12px;
}
.am-tile {
  display: flex;
  gap: 8px;
  align-items: center;
  background: var(--card);
  border: var(--line-w) solid var(--line);
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 650;
}
.am-ico { width: 28px; height: 28px; flex: 0 0 28px; color: var(--leaf); }
.am-ico svg { width: 28px; height: 28px; display: block; }
.faq-item {
  background: var(--card);
  border: var(--line-w) solid var(--line);
  border-radius: 12px;
  padding: 8px 12px;
  margin: 6px 0;
}
.faq-item summary { cursor: pointer; font-weight: 700; }
.faq-item p { margin: 8px 0 4px; font-size: 14px; }
.map {
  border-radius: 14px;
  overflow: hidden;
  border: var(--line-w) solid var(--line);
  height: 220px;
  background: var(--chip);
}
.map iframe { width: 100%; height: 100%; border: 0; }
.sur-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.sur-card {
  background: var(--card);
  border: var(--line-w) solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
}
.sur-card ul { margin: 6px 0 0; padding-inline-start: 18px; }
.topics { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 8px; }
.topics button {
  width: auto;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 999px;
  min-height: 0;
}
.topics button.on { background: var(--ink); color: var(--bg); }
.row-head { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.ghost-ink {
  width: auto;
  background: transparent;
  color: var(--leaf);
  border: 0;
  padding: 0;
  min-height: 0;
  text-decoration: underline;
  font-size: 13px;
}
.reviews-block.open .wheel {
  flex-wrap: wrap;
  overflow: visible;
}
.reviews-block.open .wheel .review { flex-basis: min(100%, 280px); }
.am-grid.compact { grid-template-columns: repeat(auto-fill, minmax(128px, 1fr)); gap: 6px; }
.am-grid.compact .am-tile { padding: 6px 8px; font-size: 12px; }
.wheel-tools { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.wheel-tools button { width: auto; min-height: 34px; padding: 6px 10px; font-size: 12px; }
.page .hero { margin: 12px 0 10px; }
