:root {
  --bg: var(--lv-mist);
  --card: var(--lv-paper);
  --line: var(--lv-stone);
  --text: var(--lv-ink-soft);
  --muted: var(--lv-muted);
  --title: var(--lv-ink);
  --brand: var(--lv-forest);
  --brand-dark: var(--lv-forest-deep);
  --cream: var(--lv-honey);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--lv-font-body);
  line-height: 1.55;
}
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0 10px;
}
.brand {
  color: #2f2a22;
  text-decoration: none;
  font-family: var(--lv-font-display);
  font-size: 28px;
  line-height: 0.9;
  font-weight: 600;
  text-align: center;
  min-width: 170px;
}
.brand small {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  font-family: var(--lv-font-body);
  opacity: 0.85;
  margin-top: 4px;
}
.menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.menu a {
  color: #4f493d;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.top-btn {
  background: var(--brand);
  color: #f2f4ef !important;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 7px;
  padding: 9px 13px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}
.top-btn-spaced {
  display: inline-block;
  margin-top: 10px;
}
.top-btn i { color: #f2f4ef !important; }

.hero {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 360px;
  margin-bottom: 14px;
  background: #1d242d;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 13, 18, 0.68) 0%, rgba(10, 13, 18, 0.34) 56%, rgba(10, 13, 18, 0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 24px;
  color: #fff;
}
.crumbs {
  font-size: 13px;
  margin-bottom: 14px;
  opacity: 0.98;
  color: rgba(255,255,255,0.96) !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
h1 {
  margin: 0 0 10px;
  font-family: var(--lv-font-display);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.96;
  font-weight: 500;
  color: #fff !important;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}
.hero h1 {
  color: #fff !important;
}
.hero p {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.96) !important;
  font-size: 15px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.32);
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-actions a {
  border-radius: 8px;
  padding: 9px 13px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}
.hero-actions .primary { background: var(--cream); color: #2f2a22; }
.hero-actions .secondary {
  border: 1px solid rgba(255,255,255,0.45);
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.lead {
  text-align: center;
  color: var(--muted);
  margin: 0 0 12px;
  font-size: 15px;
}

.block {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 10px;
}
.section-title {
  margin: 0 0 12px;
  font-family: var(--lv-font-display);
  color: var(--title);
  font-size: 42px;
  line-height: 1.05;
}
.section-title-activities {
  font-size: 34px;
  margin-top: 14px;
}
.section-title-centered {
  text-align: center;
  margin-bottom: 10px;
}
.section-title-inside {
  font-size: 32px;
  margin-bottom: 10px;
}
.price-highlight {
  font-weight: 700;
  color: #3f4b33;
}
.about-grid .section-title {
  font-size: 34px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 12px;
  align-items: stretch;
}
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li { margin-bottom: 8px; color: var(--muted); font-size: 14px; }
.checklist i { color: #7d7463; margin-right: 8px; width: 18px; }
.about-note {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.about-image img,
.season-card img,
.house-card img,
.inside-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.season-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}
.season-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.season-card img {
  height: 136px;
  object-position: center top;
}
.season-body { padding: 10px 12px 12px; }
.season-body h3 {
  margin: 0 0 8px;
  font-family: var(--lv-font-display);
  font-size: 22px;
  color: var(--title);
}
.season-body ul { margin: 0; padding-left: 18px; color: var(--muted); }

.houses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.house-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.house-card img { height: 175px; border-radius: 0; }
.house-body { padding: 10px 11px 11px; }
.house-meta {
  margin: 0 0 8px;
  color: #6a6356;
  font-size: 13px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 10px 0 8px;
  border-top: 1px solid #ece7dc;
  border-bottom: 1px solid #ece7dc;
}
.house-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
}
.house-meta i {
  color: #958a73;
  font-size: 14px;
}
.house-name {
  margin: 0 0 8px;
  font-family: var(--lv-font-display);
  font-size: 27px;
  color: var(--title);
}
.house-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.details-link { color: #4f493d; font-weight: 700; text-decoration: none; font-size: 13px; }
.house-image-wrap {
  position: relative;
}
.house-tag {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  background: #46553a;
  color: #f2f2eb;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  border-radius: 6px;
  padding: 7px 10px;
}

.inside-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}
.inside-item i { display: block; font-size: 16px; margin-bottom: 5px; color: #7d7463; }

.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
  align-items: stretch;
}
.inside-image img { height: 178px; }
.location-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 14px;
}
.location-card h3 {
  margin: 0 0 8px;
  font-family: var(--lv-font-display);
  font-size: 24px;
  color: var(--title);
}
.map-link { color: #4f493d; font-weight: 700; text-decoration: none; }

.quote {
  text-align: center;
  font-family: var(--lv-font-display);
  font-size: clamp(38px, 4.6vw, 56px);
  color: #2f2a22;
  line-height: 1.08;
  margin: 10px auto 12px;
  max-width: 980px;
}

.availability-faq {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
}
.availability-card,
.faq-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 12px;
}
.availability-card h3,
.faq-card h3 {
  margin: 0 0 8px;
  font-family: var(--lv-font-display);
  font-size: 22px;
  color: var(--title);
}
.availability-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}
.availability-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px solid #efe9dd;
}
.availability-list li:last-child { border-bottom: 0; }

details {
  border: 1px solid #ece4d6;
  border-radius: 8px;
  padding: 9px 11px;
  margin-bottom: 8px;
  background: #fff;
}
summary {
  cursor: pointer;
  font-weight: 700;
  color: #433d31;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
details p { color: var(--muted); margin: 8px 0 0; }

.cta {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 112px;
  margin: 8px 0 16px;
  border: 1px solid #273121;
}
.cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 16, 9, 0.62);
}
.cta-content {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  color: #fff;
}
.cta-title {
  margin: 0;
  font-family: var(--lv-font-display);
  font-size: 31px;
  line-height: 1;
  color: #fff !important;
}
.lv-theme .cta .cta-title {
  color: #fff !important;
}

@media (max-width: 980px) {
  .top-nav {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .menu {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 14px;
    padding-top: 4px;
  }
  .about-grid,
  .season-grid,
  .houses-grid,
  .location-grid,
  .availability-faq { grid-template-columns: 1fr; }
  .inside-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cta-content { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .container { padding: 0 10px; }
  .top-nav {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding-top: 10px;
  }
  .brand {
    min-width: 0;
    text-align: left;
    font-size: 26px;
    line-height: 0.92;
  }
  .brand small {
    font-size: 11px;
    letter-spacing: 0.18em;
  }
  .menu {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 2px 0 0;
  }
  .menu a {
    font-size: 13px;
  }
  .top-btn {
    padding: 8px 11px;
    font-size: 12px;
  }
  .hero { min-height: 330px; }
  .hero-content { padding: 18px; }
  h1 {
    font-size: 44px;
    line-height: 0.95;
  }
  .hero p { font-size: 15px; }
  .section-title { font-size: 31px; }
  .house-name { font-size: 28px; }
  .house-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .inside-strip { grid-template-columns: 1fr 1fr; }
  .cta-title { font-size: 26px; }
  .lead {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .block {
    padding: 12px;
    margin-bottom: 8px;
  }
}
