:root {
  --bg: #faf8f5;
  --surface: #ffffff;
  --ink: #1a1814;
  --muted: #5c5850;
  --accent: #c45c3e;
  --accent-hover: #a84d33;
  --line: #e8e4dc;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(26, 24, 20, 0.08);
  --font: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

header.top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.brand:hover {
  text-decoration: none;
  color: var(--accent);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
}

.lang-toggle button {
  font: inherit;
  font-size: 0.85rem;
  padding: 0.4rem 0.75rem;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
}
.lang-toggle button[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
}

.hero {
  padding: 2.5rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-copy h1 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
}

.hero-lead {
  color: var(--muted);
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
}

.price-pill {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}
.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.meta-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.meta-list li::before {
  content: "·";
  margin-right: 0.35rem;
  color: var(--line);
}
.meta-list li:first-child::before {
  content: none;
}

.hero-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: var(--line);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery {
  padding: 2rem 0 3rem;
}

.gallery h2 {
  font-size: 1.35rem;
  margin: 0 0 1rem;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.6rem;
}

.thumbs button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  aspect-ratio: 4/3;
}
.thumbs button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumbs button:focus-visible,
.thumbs button:hover {
  border-color: var(--accent);
}

.city-views {
  padding-top: 2rem;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.city-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--line);
}

.city-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.city-credit {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 1rem 0 0;
}

.city-credit a {
  font-weight: 600;
  margin: 0 0.15rem;
}

.section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
}

.section h2 {
  font-size: 1.35rem;
  margin: 0 0 1rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 720px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.prose p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.bullets {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}
.bullets li {
  margin-bottom: 0.4rem;
}

.booking-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
}

.booking-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.calendar-nav button {
  font: inherit;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 8px;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
}
.calendar-nav button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.cal-months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 520px) {
  .cal-months {
    grid-template-columns: 1fr;
  }
}

.cal-month h4 {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--muted);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  font-size: 0.75rem;
  text-align: center;
}

.cal-dow {
  color: var(--muted);
  font-weight: 600;
  padding: 0.2rem 0;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  background: var(--bg);
  font: inherit;
  font-size: 0.8rem;
  color: var(--ink);
  padding: 0;
}
.cal-day:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}
.cal-day.past {
  opacity: 0.35;
  cursor: not-allowed;
}
.cal-day.in-range {
  background: #f0e8e4;
}
.cal-day.range-start,
.cal-day.range-end {
  background: var(--accent);
  color: #fff;
}
.cal-day.today {
  outline: 1px solid var(--accent);
}

.range-summary {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  min-height: 2.5rem;
}

.messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.messenger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}
.messenger:hover {
  text-decoration: none;
  border-color: var(--accent);
}

.reviews-grid {
  display: grid;
  gap: 1rem;
}

.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
}
.review p {
  margin: 0 0 0.5rem;
  color: var(--muted);
}
.review cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 280px;
  background: var(--line);
}
.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rent-form {
  display: grid;
  gap: 0.85rem;
  max-width: 520px;
  margin-top: 1rem;
}

.rent-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.rent-form input,
.rent-form textarea {
  font: inherit;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 100%;
  background: var(--surface);
}

.rent-form input:focus,
.rent-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.rent-form textarea {
  min-height: 120px;
  resize: vertical;
}

.rent-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (max-width: 520px) {
  .rent-form .form-row {
    grid-template-columns: 1fr;
  }
}

footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
}

footer a {
  color: var(--muted);
  font-weight: 600;
}

.fab-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  display: none;
  justify-content: center;
  gap: 0.5rem;
  z-index: 40;
}

@media (max-width: 720px) {
  .fab-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }
  body {
    padding-bottom: 5.5rem;
  }
}
