﻿@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f8f4ec;
  min-height: 100vh;
  font-family: "Montserrat", sans-serif;
}
body.preload {
  display: none;
}

a {
  cursor: pointer;
}

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

button, input, select, textarea {
  font-family: "Montserrat", sans-serif;
}

.sec-pad {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}
@media (max-width: 1024px) {
  .sec-pad {
    padding: 0 32px;
  }
}
@media (max-width: 640px) {
  .sec-pad {
    padding: 0 20px;
  }
}

.sec-pad--narrow {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}
@media (max-width: 1024px) {
  .sec-pad--narrow {
    padding: 0 32px;
  }
}
@media (max-width: 640px) {
  .sec-pad--narrow {
    padding: 0 20px;
  }
}

.sec-pad--wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 64px;
}
@media (max-width: 1024px) {
  .sec-pad--wide {
    padding: 0 32px;
  }
}
@media (max-width: 640px) {
  .sec-pad--wide {
    padding: 0 20px;
  }
}

.sec-pad--pt-32 {
  padding-top: 32px;
}

.sec-pad--pb-80 {
  padding-bottom: 80px;
}

.is-hidden {
  display: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-animate=visible] {
  opacity: 1;
  transform: none;
}

.field__label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: rgba(26, 34, 64, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.field__input, .field__textarea {
  width: 100%;
  background: #f8f4ec;
  border: 1px solid rgba(26, 34, 64, 0.13);
  border-radius: 10px;
  color: #1a2240;
  font-size: 13px;
  padding: 10px 12px;
  outline: none;
}
.field__input:focus, .field__textarea:focus {
  border-color: #1a2240;
}
.field__textarea {
  resize: vertical;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(26, 34, 64, 0.55);
}
.icon-row svg, .icon-row img {
  flex: none;
}

/* ── Home nav (fixed, transparent → solid on scroll, hamburger) ──
   Inner pages reuse this component via the --page modifier, which
   renders it permanently in its solid/sticky state. ── */
.nav-home {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 132px;
  background: transparent;
  border-bottom: 1px solid transparent;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  transition: height 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.nav-home.is-scrolled, .nav-home.nav-home--page {
  height: 72px;
  background: rgba(240, 236, 224, 0.92);
  box-shadow: 0 2px 20px rgba(26, 34, 64, 0.1);
  border-bottom-color: rgba(26, 34, 64, 0.09);
}
.nav-home.is-scrolled .nav-home__logo, .nav-home.nav-home--page .nav-home__logo {
  height: 50px;
}
.nav-home.is-scrolled .hamburger__line, .nav-home.nav-home--page .hamburger__line {
  background: #1a2240;
  box-shadow: none;
}
.nav-home.is-scrolled .lang-drop__btn, .nav-home.nav-home--page .lang-drop__btn {
  background: rgba(26, 34, 64, 0.07);
  border-color: transparent;
  color: #1a2240;
}
.nav-home.is-scrolled .nav-home__link, .nav-home.nav-home--page .nav-home__link {
  color: rgba(26, 34, 64, 0.62);
  text-shadow: none;
}
.nav-home.is-scrolled .nav-home__link:hover, .nav-home.nav-home--page .nav-home__link:hover {
  color: #1a2240;
}
.nav-home.is-scrolled .nav-home__link--cta, .nav-home.nav-home--page .nav-home__link--cta {
  color: #c9a844;
  border-bottom-color: rgba(201, 168, 68, 0.4);
  text-shadow: none;
}
.nav-home.is-scrolled .nav-home__link--cta:hover, .nav-home.nav-home--page .nav-home__link--cta:hover {
  color: #a8882e;
}
.nav-home.is-scrolled .nav-home__link--active, .nav-home.nav-home--page .nav-home__link--active {
  color: #1a2240;
}
.nav-home.nav-home--page {
  position: sticky;
}
.nav-home__logo-frame {
  display: flex;
  align-items: center;
}
.nav-home__logo {
  height: 70px;
  width: auto;
  transition: height 0.3s ease;
}
.nav-home__links {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav-home__link {
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 10px rgba(4, 12, 28, 0.45);
  transition: color 0.25s ease;
}
.nav-home__link:hover {
  color: #f0e4c4;
}
.nav-home__link--active {
  font-weight: 700;
}
.nav-home__link--cta {
  color: #f2d98a;
  border-bottom: 1px solid rgba(242, 217, 138, 0.5);
  padding-bottom: 1px;
}
.nav-home__link--cta:hover {
  color: #fff;
}
.nav-home__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-home__login {
  font-size: 11px;
  font-weight: 700;
  color: #f8f4ec;
  background: #1a2240;
  padding: 10px 22px;
  border-radius: 12px;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-home__login:hover {
  background: #2a3560;
  color: #f8f4ec;
}
@media (max-width: 1024px) {
  .nav-home {
    padding: 0 32px;
  }
}
@media (max-width: 1180px) {
  .nav-home .nav-home__links, .nav-home .nav-home__actions {
    display: none;
  }
  .nav-home .nav-home__logo {
    height: 50px;
  }
}
@media (max-width: 768px) {
  .nav-home {
    padding: 0 20px;
    height: 88px;
  }
  .nav-home.is-scrolled, .nav-home.nav-home--page {
    height: 64px;
  }
}

/* ── Hamburger (shown below $bp-desktop on every page) ── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  width: 38px;
  height: 38px;
}
@media (max-width: 1180px) {
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.hamburger__line {
  position: absolute;
  left: 8px;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 1px 6px rgba(4, 12, 28, 0.35);
  transition: transform 0.32s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.22s ease, top 0.32s cubic-bezier(0.65, 0, 0.35, 1), background 0.25s ease;
}
.hamburger__line:nth-child(1) {
  top: 13px;
}
.hamburger__line:nth-child(2) {
  top: 19px;
}
.hamburger__line:nth-child(3) {
  top: 25px;
}
.hamburger.is-open .hamburger__line {
  background: #1a2240;
  box-shadow: none;
}
.hamburger.is-open .hamburger__line:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.hamburger.is-open .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open .hamburger__line:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 99;
  padding: 75px 24px 32px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.mobile-menu.is-open {
  display: flex;
}
.mobile-menu__link {
  font-size: 15px;
  font-weight: 600;
  color: #1a2240;
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid rgba(26, 34, 64, 0.07);
  display: block;
}
.mobile-menu__link--cta {
  color: #c9a844;
}
.mobile-menu__lang-heading {
  font-size: 10px;
  font-weight: 700;
  color: rgba(26, 34, 64, 0.4);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 24px 0 12px;
}
.mobile-menu__lang-row {
  display: flex;
  gap: 8px;
}
.mobile-menu__lang-btn {
  border: 1px solid rgba(26, 34, 64, 0.22);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  color: #1a2240;
}
.mobile-menu__lang-btn.is-active {
  background: #1a2240;
  color: #f8f4ec;
  border-color: #1a2240;
}

.lang-drop {
  position: relative;
}
.lang-drop__btn {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 10px;
  padding: 8px 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.lang-drop__btn img {
  transition: transform 0.2s;
}
.lang-drop__btn.is-open img {
  transform: rotate(180deg);
}
.lang-drop--solid .lang-drop__btn {
  background: rgba(26, 34, 64, 0.07);
  border-color: transparent;
  color: #1a2240;
}
.lang-drop__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid rgba(26, 34, 64, 0.1);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(26, 34, 64, 0.12);
  overflow: hidden;
  min-width: 90px;
  z-index: 200;
  display: none;
}
.lang-drop__menu.is-open {
  display: block;
}
.lang-drop__menu a {
  display: block;
  padding: 10px 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(26, 34, 64, 0.7);
  text-decoration: none;
}
.lang-drop__menu a:hover {
  background: #f8f4ec;
  color: #1a2240;
}
.lang-drop__menu a.is-active {
  color: #c9a844;
}

.footer {
  background: #f0ece0;
  border-top: 1px solid rgba(26, 34, 64, 0.09);
  padding: 56px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .footer__grid {
    gap: 32px;
  }
}
@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr !important;
    gap: 36px;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__logo {
  height: 112px;
  width: auto;
}
.footer__tagline {
  font-size: 12px;
  color: rgba(26, 34, 64, 0.55);
  line-height: 1.75;
  max-width: 260px;
}
.footer__heading {
  font-size: 10px;
  font-weight: 700;
  color: #1a2240;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav a {
  font-size: 13px;
  color: rgba(26, 34, 64, 0.6);
  text-decoration: none;
}
.footer__nav a:hover {
  color: #1a2240;
}
.footer__nav a.footer__nav--cta {
  color: #c9a844;
  font-weight: 600;
}
.footer__nav a.footer__nav--cta:hover {
  color: #a8882e;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.footer__contact p, .footer__contact a {
  margin: 0;
  font-size: 13px;
  color: rgba(26, 34, 64, 0.6);
  text-decoration: none;
}
.footer__contact a:hover {
  color: #1a2240;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social-link {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(26, 34, 64, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a2240;
  text-decoration: none;
  opacity: 0.55;
  font-size: 14px;
}
.footer__social-link:hover {
  border-color: #1a2240;
  opacity: 1;
  color: #1a2240;
}
.footer__bottom {
  border-top: 1px solid rgba(26, 34, 64, 0.1);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 640px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
.footer__copy {
  font-size: 11px;
  color: rgba(26, 34, 64, 0.35);
}
.footer__copy a {
  color: #c9a844;
  text-decoration: none;
}
.footer__credit {
  font-size: 11px;
  color: rgba(26, 34, 64, 0.35);
}
.footer__credit a {
  color: rgba(26, 34, 64, 0.35);
  text-decoration: underline;
}
.footer__credit a:hover {
  color: #1a2240;
}
.footer__langs {
  display: flex;
  gap: 16px;
}
.footer__langs a {
  font-size: 10px;
  font-weight: 600;
  color: rgba(26, 34, 64, 0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}
.footer__langs a:hover {
  color: #1a2240;
}

.btn {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn--gold {
  background: #c9a844;
  color: #1a2240;
}
.btn--navy {
  background: #1a2240;
  color: #f8f4ec;
}
.btn--outline {
  background: transparent;
  border: 1px solid rgba(26, 34, 64, 0.22);
  color: rgba(26, 34, 64, 0.68);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 14px 52px;
}

.btn.is-disabled, .btn.btn--gold.is-disabled, .btn.btn--navy.is-disabled,
.btn:disabled, .btn.btn--gold:disabled, .btn.btn--navy:disabled {
  background: rgba(26, 34, 64, 0.08);
  color: rgba(26, 34, 64, 0.4);
  cursor: not-allowed;
}
.btn.is-disabled:hover, .btn.btn--gold.is-disabled:hover, .btn.btn--navy.is-disabled:hover,
.btn:disabled:hover, .btn.btn--gold:disabled:hover, .btn.btn--navy:disabled:hover {
  background: rgba(26, 34, 64, 0.08);
  color: rgba(26, 34, 64, 0.4);
}

.btn.btn--gold:hover {
  background: #d9bc5f;
}

.btn.btn--navy:hover {
  background: #2a3560;
  color: #f8f4ec;
}

.btn.btn--outline:hover {
  border-color: #1a2240;
  color: #1a2240;
}

.btnSend {
  align-self: flex-start;
}

.wait {
  display: none;
  margin-top: 4px;
}

.wait__inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(26, 34, 64, 0.65);
}

.wait__spinner {
  flex: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid rgba(26, 34, 64, 0.15);
  border-top-color: #1a2240;
  animation: wait-spin 0.7s linear infinite;
}

@keyframes wait-spin {
  to {
    transform: rotate(360deg);
  }
}
.btn--back {
  margin-top: 24px;
  display: inline-block;
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: #c9a844;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #1a2240;
}
.check-item svg, .check-item img {
  flex: none;
}

/* Shared property-card styles (home + listings page) */
.prop-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(26, 34, 64, 0.07);
  box-shadow: 0 2px 14px rgba(26, 34, 64, 0.06);
  transition: box-shadow 0.25s, transform 0.25s;
  cursor: pointer;
}
.prop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(26, 34, 64, 0.14);
}
.prop-card__img {
  height: 300px;
  position: relative;
  overflow: hidden;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
}
.prop-card__img--sm {
  height: 260px;
}
.prop-card__type {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(26, 34, 64, 0.82);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 10px;
}
.prop-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 22px;
}
.prop-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #1a2240;
  margin-bottom: 6px;
  line-height: 1.3;
}
.prop-card__stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.prop-card__features {
  font-size: 12px;
  color: #c9a844;
  margin-bottom: 18px;
}
.prop-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(26, 34, 64, 0.07);
  padding-top: 16px;
  margin-top: auto;
}
.prop-card__price {
  font-size: 17px;
  font-weight: 700;
  color: #1a2240;
}
.prop-card__price-unit {
  font-size: 11px;
  color: rgba(26, 34, 64, 0.38);
  margin-left: 3px;
}
.prop-card__mh-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  /*box-shadow: 0 2px 8px $navy-25;*/
}
.prop-card__cta {
  background: #1a2240;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 12px;
}
.prop-card.is-hidden {
  display: none;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-tabs__btn {
  border: 1px solid rgba(26, 34, 64, 0.25);
  border-radius: 28px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  color: #1a2240;
  transition: all 0.18s;
}
.filter-tabs__btn.is-active {
  background: #1a2240;
  color: #f8f4ec;
  border-color: #1a2240;
}

.mh-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
.mh-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.mh-switch__track {
  position: relative;
  flex: 0 0 auto;
  width: 40px;
  height: 22px;
  border-radius: 999px;
  background: rgba(26, 34, 64, 0.15);
  transition: background 0.18s;
}
.mh-switch__thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(26, 34, 64, 0.3);
  transition: transform 0.18s;
}
.mh-switch__label {
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 600;
  color: #1a2240;
}
.mh-switch input:checked ~ .mh-switch__track {
  background: #c9a844;
}
.mh-switch input:checked ~ .mh-switch__track .mh-switch__thumb {
  transform: translateX(18px);
}
.mh-switch input:focus-visible ~ .mh-switch__track {
  outline: 2px solid #c9a844;
  outline-offset: 2px;
}

#cookieModal .modal-dialog {
  max-width: 480px;
}
#cookieModal .modal-content {
  background: #f8f4ec;
  border: 1px solid rgba(26, 34, 64, 0.1);
  border-radius: 24px;
  box-shadow: 0 14px 44px rgba(26, 34, 64, 0.15);
  font-family: "Montserrat", sans-serif;
}

.cookie-banner,
.cookie-settings-panel {
  padding: 32px;
}

.cookie-banner__title {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1a2240;
  margin: 0 0 12px;
}

.cookie-banner__text,
.cookie-settings-panel__text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(26, 34, 64, 0.68);
}
.cookie-banner__text a,
.cookie-settings-panel__text a {
  color: #a8882e;
  font-weight: 600;
}
.cookie-banner__text a:hover,
.cookie-settings-panel__text a:hover {
  color: #c9a844;
}

.cookie-settings-panel__text {
  margin: 0 0 20px;
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.cookie-banner__buttons {
  display: flex;
  gap: 10px;
  width: 100%;
}
.cookie-banner__buttons .btn {
  flex: 1;
  font-size: 11px;
  padding: 13px 22px;
}

.cookie-banner__settings-link {
  background: none;
  border: none;
  padding: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 34, 64, 0.68);
  text-decoration: underline;
  cursor: pointer;
}
.cookie-banner__settings-link:hover {
  color: #1a2240;
}

.cookie-settings-panel__accept-all {
  width: 100%;
  font-size: 11px;
  padding: 12px;
}

.cookie-settings-panel__save {
  width: 100%;
  font-size: 11px;
  padding: 14px;
  margin-top: 16px;
}

.cookie-item {
  border: 1px solid rgba(26, 34, 64, 0.1);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.cookie-item.mt-4 {
  margin-top: 16px;
}
.cookie-item + .cookie-item {
  margin-top: 10px;
}
.cookie-item > button {
  width: 100%;
  background: transparent;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
}
.cookie-item > button span {
  font-size: 13px;
  font-weight: 600;
  color: #1a2240;
}
.cookie-item .cookie-item__always-active {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(26, 34, 64, 0.45);
}
.cookie-item .cookie-item-icon {
  width: 12px;
  opacity: 0.45;
}
.cookie-item .form-check-input {
  width: 32px;
  height: 18px;
  accent-color: #c9a844;
  cursor: pointer;
  margin: 0;
}
.cookie-item .collapse-container {
  padding: 0 16px 16px;
  background: transparent;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(26, 34, 64, 0.6);
}

/* ── Hero ── */
.hero-home {
  position: relative;
  height: 100vh;
}
.hero-home__photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-home__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.hero-home__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 12, 28, 0) 0%, rgba(4, 12, 28, 0.1) 35%, rgba(4, 12, 28, 0.48) 100%);
}
.hero-home__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-home__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px;
  animation: fadeUp 0.9s ease both;
}
@media (max-width: 640px) {
  .hero-home__inner {
    padding: 0 20px;
  }
}
.hero-home__text {
  display: block;
  max-width: 530px;
  margin-left: auto;
  text-align: right;
  opacity: 0.9;
}
@media (max-width: 960px) {
  .hero-home__text {
    max-width: 440px;
    padding: 0 20px;
  }
}
.hero-home__title {
  font-size: 74px;
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 24px;
  text-wrap: pretty;
  text-shadow: 0 2px 24px rgba(4, 12, 28, 0.55);
}
.hero-home__title span {
  display: block;
}
@media (max-width: 960px) {
  .hero-home__title {
    font-size: 54px;
  }
}
.hero-home__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-home__list li, .hero-home__list p {
  font-size: 24px;
  color: #fff;
  text-shadow: 0 1px 14px rgba(4, 12, 28, 0.55);
  margin: 0;
}
@media (max-width: 960px) {
  .hero-home__list li, .hero-home__list p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .hero-home {
    height: 100vh;
  }
  .hero-home__title {
    font-size: 44px;
  }
}
@media (max-width: 480px) {
  .hero-home__title {
    font-size: 40px;
  }
}

/* ── Filter bar (floats over hero bottom edge) ── */
.filter-wrap {
  position: absolute;
  bottom: -32px;
  left: 64px;
  right: 64px;
  max-width: 1152px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 24px 28px;
  display: flex;
  gap: 14px;
  align-items: flex-end;
  box-shadow: 0 8px 40px rgba(4, 12, 28, 0.18);
  border: 1px solid rgba(26, 34, 64, 0.07);
  opacity: 0;
  transform: translateY(28px);
  pointer-events: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.filter-wrap.is-revealed {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.filter-wrap__field {
  flex: 1;
}
.filter-wrap__field--persons {
  flex: 0 0 128px;
}
.filter-wrap__field--price {
  flex: 0 0 152px;
}
.filter-wrap__btn {
  flex: 0 0 auto;
  background: #1a2240;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 28px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  white-space: nowrap;
}
.filter-wrap__btn:hover {
  background: #2a3560;
}
@media (max-width: 1024px) {
  .filter-wrap {
    left: 32px;
    right: 32px;
    flex-wrap: wrap;
  }
  .filter-wrap > div {
    flex: 1 1 160px !important;
  }
}
@media (max-width: 768px) {
  .filter-wrap {
    left: 16px !important;
    right: 16px !important;
    bottom: -24px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    padding: 18px 16px !important;
    border-radius: 16px !important;
  }
  .filter-wrap > div {
    width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
  }
  .filter-wrap .filter-wrap__btn {
    grid-column: 1/-1 !important;
    padding: 13px 0 !important;
    width: 100%;
  }
}

/* ── Listings section (homepage) ── */
.listings {
  background: #f8f4ec;
  padding: 80px 0 72px;
}
@media (max-width: 768px) {
  .listings {
    padding-top: 60px;
  }
}
.listings__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.listings__title {
  font-size: 30px;
  font-weight: 700;
  color: #1a2240;
  line-height: 1.1;
}
.listings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .listings__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .listings__grid {
    grid-template-columns: 1fr;
  }
}
.listings__more {
  text-align: center;
  margin-top: 48px;
}

/* ── Direct-bij-eigenaar promise strip ── */
.promise {
  background: #f0ece0;
  padding: 64px 0;
  border-top: 1px solid rgba(26, 34, 64, 0.06);
}
.promise__row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.promise__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(201, 168, 68, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.promise__body {
  max-width: 680px;
}
.promise__title {
  font-size: 27px;
  font-weight: 700;
  color: #1a2240;
  line-height: 1.2;
  margin-bottom: 12px;
  text-wrap: pretty;
}
.promise__desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(26, 34, 64, 0.62);
  line-height: 1.75;
  margin-bottom: 20px;
}
.promise__checks {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Vermieter banner ── */
.vermieter-banner {
  background: linear-gradient(135deg, #1a2240 0%, #2a3a6a 50%, #1a2240 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.vermieter-banner__row {
  display: flex;
  gap: 64px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
@media (max-width: 768px) {
  .vermieter-banner__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }
}
.vermieter-banner__text {
  flex: 1;
  min-width: 280px;
}
.vermieter-banner__title {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  text-wrap: pretty;
}
@media (max-width: 480px) {
  .vermieter-banner__title {
    font-size: 30px;
  }
}
.vermieter-banner__desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  max-width: 480px;
}
.vermieter-banner__side {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .vermieter-banner__side {
    width: 100%;
  }
}
.vermieter-banner__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.vermieter-banner__stat {
  text-align: center;
}
.vermieter-banner__stat-value {
  font-size: 36px;
  font-weight: 700;
  color: #c9a844;
  line-height: 1;
}
.vermieter-banner__stat-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── Activities grid (homepage) ── */
.activities-home {
  background: #f0ece0;
  padding: 80px 0;
}
.activities-home__head {
  text-align: center;
  margin-bottom: 52px;
}
.activities-home__title {
  font-size: 30px;
  font-weight: 700;
  color: #1a2240;
}
.activities-home__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.activities-home__card {
  display: block;
  width: calc((100% - 40px) / 3);
  background: #fff;
  border: 1px solid rgba(26, 34, 64, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26, 34, 64, 0.04);
  transition: box-shadow 0.22s, transform 0.22s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 1024px) {
  .activities-home__card {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 768px) {
  .activities-home__card {
    width: 100%;
  }
}
.activities-home__card:link, .activities-home__card:visited, .activities-home__card:hover, .activities-home__card:active {
  color: inherit;
  text-decoration: none;
}
.activities-home__card:hover {
  box-shadow: 0 10px 32px rgba(26, 34, 64, 0.13);
  transform: translateY(-4px);
}
.activities-home__card a, .activities-home__card a:link, .activities-home__card a:visited, .activities-home__card a:hover, .activities-home__card a:active {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}
.activities-home__card-img {
  height: 220px;
  overflow: hidden;
}
.activities-home__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.activities-home__card-body {
  padding: 20px 18px 22px;
}
.activities-home__card-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a2240;
  margin-bottom: 6px;
}
.activities-home__card-desc {
  font-size: 12px;
  color: rgba(26, 34, 64, 0.52);
  line-height: 1.65;
}
.activities-home__more {
  text-align: center;
  margin-top: 48px;
}

/* ── Maison Helvetia partner section ── */
.mh-section {
  background: #1a2240;
  padding: 80px 0;
}
.mh-section__row {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) {
  .mh-section__row {
    padding: 0 32px;
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .mh-section__row {
    padding: 0 16px;
    flex-direction: column;
    gap: 36px;
  }
}
.mh-section__photo {
  flex: 0 0 500px;
  height: 600px;
  position: relative;
}
@media (max-width: 768px) {
  .mh-section__photo {
    flex: none;
    width: 100%;
    height: 240px;
  }
}
.mh-section__photo-frame {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
  position: relative;
}
.mh-section__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.mh-section__photo-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26, 34, 64, 0.55) 0%, transparent 50%);
}
.mh-section__badge {
  position: absolute;
  bottom: -18px;
  left: 24px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
  border: 3px solid rgba(201, 168, 68, 0.5);
}
.mh-section__text {
  flex: 1;
}
.mh-section__title {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.mh-section__desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 34px;
  max-width: 480px;
  text-wrap: pretty;
}
.mh-section__actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.mh-section__link {
  color: rgba(201, 168, 68, 0.78);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 68, 0.3);
  padding-bottom: 2px;
}
.mh-section__link:hover {
  color: #c9a844;
}

/* ── Overzichtspagina (ferienwohnungen.html) ── */
.page-header {
  padding-top: 40px;
  padding-bottom: 28px;
}
.page-header__crumb {
  font-size: 12px;
  color: rgba(26, 34, 64, 0.45);
  margin-bottom: 14px;
}
.page-header__crumb a {
  color: rgba(26, 34, 64, 0.45);
  text-decoration: none;
}
.page-header__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.page-header__title {
  font-size: 34px;
  font-weight: 700;
  color: #1a2240;
  line-height: 1.1;
}
.page-header__title--form {
  font-size: 30px;
  margin-bottom: 12px;
}
.page-header__count {
  font-size: 14px;
  color: rgba(26, 34, 64, 0.55);
  margin-top: 8px;
}
.page-header__intro--form {
  margin-bottom: 36px;
}
.page-header__filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(201, 168, 68, 0.16);
  border: 1px solid rgba(201, 168, 68, 0.4);
  border-radius: 12px;
  padding: 8px 16px;
  margin-top: 16px;
  font-size: 13px;
  color: #1a2240;
}
.page-header__filter-chip a {
  color: #a8882e;
  font-weight: 700;
  text-decoration: underline;
  white-space: nowrap;
}

.page-header.sec-pad--pb-80 {
  padding-bottom: 80px;
}

.filter-bar {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid rgba(26, 34, 64, 0.08);
  border-radius: 20px;
  padding: 22px 26px;
  box-shadow: 0 2px 14px rgba(26, 34, 64, 0.05);
  margin-bottom: 24px;
}
.filter-bar__field {
  flex: 1;
}
.filter-bar__field--persons {
  flex: 0 0 128px;
}
.filter-bar__field--price {
  flex: 0 0 152px;
}
.filter-bar__field--flexible {
  flex: 0 0 auto;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.filter-bar__field--flexible .mh-switch {
  flex: 1;
  display: flex;
  align-items: center;
}
.filter-bar__btn {
  flex: 0 0 auto;
  background: #1a2240;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 28px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  white-space: nowrap;
}
.filter-bar__btn:hover {
  background: #2a3560;
}
.filter-bar__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.filter-bar__loading {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  align-self: flex-end;
  margin-bottom: 0.75rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(26, 34, 64, 0.5);
}
.filter-bar__spinner {
  flex: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(26, 34, 64, 0.15);
  border-top-color: #1a2240;
  animation: filter-spin 0.7s linear infinite;
}
@media (max-width: 1024px) {
  .filter-bar > div {
    flex: 1 1 160px !important;
  }
}
@media (max-width: 640px) {
  .filter-bar > div {
    width: 100% !important;
    flex: none !important;
  }
  .filter-bar > button, .filter-bar > label {
    width: 100% !important;
  }
}

@keyframes filter-spin {
  to {
    transform: rotate(360deg);
  }
}
.prop-card__flexible-notice {
  font-size: 11px;
  font-weight: 600;
  color: #a8882e;
  background: rgba(201, 168, 68, 0.16);
  border-radius: 8px;
  padding: 6px 10px;
  margin-top: 8px;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.toolbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.toolbar__label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(26, 34, 64, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.toolbar__sort {
  background: #fff;
  border: 1px solid rgba(26, 34, 64, 0.15);
  border-radius: 12px;
  color: #1a2240;
  font-size: 13px;
  padding: 9px 14px;
  outline: none;
  cursor: pointer;
}
.toolbar__map-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  border: 1px solid rgba(26, 34, 64, 0.18);
  border-radius: 12px;
  padding: 9px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #fff;
  color: #1a2240;
}
.toolbar__map-btn.is-active {
  background: #1a2240;
  color: #f8f4ec;
  border-color: #1a2240;
}

.map-panel {
  width: 100%;
  height: 0;
  border-radius: 24px;
  overflow: visible;
  visibility: hidden;
  position: relative;
  border: 1px solid rgba(26, 34, 64, 0.1);
  margin-bottom: 0;
  opacity: 0;
  transition: height 0.2s ease;
}
.map-panel.is-visible {
  height: 460px;
  margin-bottom: 28px;
  opacity: 1;
  visibility: visible;
}
.map-panel__surface {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #e4dfd0;
}
.map-panel__pin {
  padding: 6px 13px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(4, 12, 28, 0.22);
  background: #fff;
  color: #1a2240;
  border: 1px solid rgba(26, 34, 64, 0.12);
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.map-panel__pin:hover {
  background: #1a2240;
  color: #fff;
  border-color: #c9a844;
  transform: scale(1.08);
  box-shadow: 0 5px 14px rgba(4, 12, 28, 0.3);
}
.map-panel__pin:focus-visible {
  outline: 2px solid #c9a844;
  outline-offset: 2px;
}
.map-panel__pin--current, .map-panel__pin--current:hover {
  padding: 7px 16px;
  border-radius: 16px;
  border: 2px solid #c9a844;
  background: #1a2240;
  color: #fff;
  cursor: default;
  box-shadow: 0 3px 10px rgba(4, 12, 28, 0.25);
  transform: none;
}
@media (max-width: 1024px) {
  .map-panel.is-visible {
    height: 360px;
  }
}
@media (max-width: 640px) {
  .map-panel.is-visible {
    height: 280px;
  }
}

.map-pin-popover {
  position: relative;
  width: 232px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 14px 34px rgba(4, 12, 28, 0.3);
  border: 1px solid rgba(26, 34, 64, 0.1);
}
.map-pin-popover__close {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #1a2240;
  box-shadow: 0 2px 8px rgba(4, 12, 28, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  padding: 0;
  font-size: 16px;
  line-height: 1;
}
.map-pin-popover__close:hover {
  background: #1a2240;
  color: #fff;
}
.map-pin-popover__img {
  height: 104px;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  background-color: #e4dfd0;
}
.map-pin-popover__body {
  padding: 14px 16px 16px;
}
.map-pin-popover__type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9a844;
  margin-bottom: 4px;
}
.map-pin-popover__title {
  font-size: 15px;
  font-weight: 700;
  color: #1a2240;
  line-height: 1.25;
  margin-bottom: 6px;
}
.map-pin-popover__stats {
  font-size: 12px;
  color: rgba(26, 34, 64, 0.6);
  margin-bottom: 12px;
}
.map-pin-popover__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.map-pin-popover__price {
  font-size: 15px;
  font-weight: 700;
  color: #1a2240;
}
.map-pin-popover__unit {
  font-size: 11px;
  font-weight: 400;
  color: rgba(26, 34, 64, 0.5);
  margin-left: 2px;
}
.map-pin-popover__cta {
  flex: 0 0 auto;
  background: #1a2240;
  color: #f8f4ec;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
}
.map-pin-popover__cta:hover {
  background: #2a3560;
  color: #f8f4ec;
}
@media (max-width: 640px) {
  .map-pin-popover {
    width: 190px;
  }
  .map-pin-popover .map-pin-popover__img {
    height: 84px;
  }
}

.gm-style .gm-style-iw-c {
  padding: 0;
  border-radius: 16px;
  box-shadow: none;
  background: transparent;
  max-height: none !important;
  max-width: none !important;
}

.gm-style .gm-style-iw-d {
  overflow: visible !important;
  padding: 0;
  max-height: none !important;
  max-width: none !important;
}

.gm-style .gm-style-iw-tc {
  display: none;
}

.gm-style .gm-ui-hover-effect {
  display: none !important;
}

.prop-grid2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .prop-grid2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .prop-grid2 {
    grid-template-columns: 1fr;
  }
}

/* ── Activiteiten-pagina ── */
.activities-page__intro {
  padding-top: 40px;
  padding-bottom: 48px;
}
.activities-page__crumb {
  font-size: 12px;
  color: rgba(26, 34, 64, 0.45);
  margin-bottom: 14px;
}
.activities-page__crumb a {
  color: rgba(26, 34, 64, 0.45);
  text-decoration: none;
}
.activities-page__title {
  font-size: 34px;
  font-weight: 700;
  color: #1a2240;
  line-height: 1.1;
  margin-bottom: 16px;
}
.activities-page__desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(26, 34, 64, 0.65);
  line-height: 1.85;
  max-width: 680px;
  text-wrap: pretty;
}

.activity-row {
  padding: 64px 0;
}
.activity-row--alt {
  background: #f0ece0;
}
.activity-row--base {
  background: #f8f4ec;
}
.activity-row__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 1024px) {
  .activity-row__grid {
    grid-template-columns: 1fr;
  }
}
.activity-row__photo {
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
}
.activity-row__photo--last {
  order: 2;
}
@media (max-width: 1024px) {
  .activity-row__photo--last {
    order: initial;
  }
}
.activity-row__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.activity-row__text--first {
  order: 1;
}
@media (max-width: 1024px) {
  .activity-row__text--first {
    order: initial;
  }
}
.activity-row__title {
  font-size: 26px;
  font-weight: 700;
  color: #1a2240;
  line-height: 1.2;
  margin-bottom: 16px;
}
.activity-row__desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(26, 34, 64, 0.65);
  line-height: 1.85;
  margin-bottom: 20px;
  text-wrap: pretty;
}
.activity-row__desc--detail {
  margin-bottom: 36px;
}
.activity-row__stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.activity-row__stat-value {
  font-size: 18px;
  font-weight: 700;
  color: #1a2240;
}
.activity-row__stat-label {
  font-size: 11px;
  color: rgba(26, 34, 64, 0.5);
}

/* ── Grächen ── */
.hero-simple {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.hero-simple__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-simple__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 12, 28, 0.55) 0%, rgba(4, 12, 28, 0.15) 60%);
}
.hero-simple__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 36px;
}
.hero-simple__crumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}
.hero-simple__crumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.hero-simple__title {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(4, 12, 28, 0.5);
}

.intro-block {
  padding-top: 48px;
  padding-bottom: 56px;
}
.intro-block__text {
  font-size: 15px;
  font-weight: 300;
  color: rgba(26, 34, 64, 0.7);
  line-height: 1.9;
  max-width: 760px;
  margin-bottom: 44px;
  text-wrap: pretty;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .facts-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.fact-card {
  background: #fff;
  border: 1px solid rgba(26, 34, 64, 0.08);
  border-radius: 20px;
  padding: 24px;
}
.fact-card__value {
  font-size: 28px;
  font-weight: 700;
  color: #1a2240;
  margin-bottom: 6px;
}
.fact-card__label {
  font-size: 12px;
  color: rgba(26, 34, 64, 0.55);
  margin-bottom: 0;
}

.season {
  padding: 64px 0;
}
.season--alt {
  background: #f0ece0;
}
.season--base {
  background: #f8f4ec;
}
.season__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 1024px) {
  .season__row {
    grid-template-columns: 1fr;
  }
}
.season__photo {
  height: 280px;
  border-radius: 24px;
  overflow: hidden;
}
.season__photo--last {
  order: 2;
}
.season__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.season__text--first {
  order: 1;
}
.season__title {
  font-size: 26px;
  font-weight: 700;
  color: #1a2240;
  line-height: 1.2;
  margin-bottom: 16px;
}
.season__desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(26, 34, 64, 0.65);
  line-height: 1.85;
  text-wrap: pretty;
}

.activity-mini {
  margin-top: 48px;
}

.activity-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .activity-mini-grid {
    grid-template-columns: 1fr;
  }
}

.activity-mini-card {
  background: #fff;
  border: 1px solid rgba(26, 34, 64, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26, 34, 64, 0.04);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.activity-mini-card:hover {
  box-shadow: 0 10px 32px rgba(26, 34, 64, 0.13);
  transform: translateY(-4px);
}
.activity-mini-card__photo {
  height: 260px;
  overflow: hidden;
}
.activity-mini-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.activity-mini-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #1a2240;
  margin: 18px 20px 6px;
}
.activity-mini-card__desc {
  font-size: 13px;
  color: rgba(26, 34, 64, 0.6);
  line-height: 1.6;
  margin: 0 20px 16px;
}
.activity-mini-card__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #c9a844;
  text-decoration: none;
  margin: auto 20px 20px;
}
.activity-mini-card__link svg, .activity-mini-card__link img {
  transition: transform 0.2s ease;
}
.activity-mini-card__link:hover {
  color: #a8882e;
}
.activity-mini-card__link:hover svg, .activity-mini-card__link:hover img {
  transform: translateX(3px);
}

.gallery {
  padding: 56px 0 72px;
}
.gallery__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
  height: 340px;
}
@media (max-width: 1024px) {
  .gallery__row {
    height: auto;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .gallery__row {
    grid-template-columns: 1fr;
  }
}
.gallery__item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}
.gallery__item:hover > picture img {
  transform: scale(1.06);
}
.gallery__item:hover .gallery__overlay {
  opacity: 1;
}
.gallery__item > picture {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery__item > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 12, 28, 0.32);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.cta-block {
  background: #1a2240;
  padding: 64px 0;
  text-align: center;
}
.cta-block__title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

/* ── Partners-pagina (weitere Partner) ── */
.partners-list {
  padding-top: 64px;
  padding-bottom: 80px;
}
.partners-list__title {
  font-size: 22px;
  font-weight: 700;
  color: #1a2240;
  margin-bottom: 24px;
}

.partner-row {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid rgba(26, 34, 64, 0.08);
  border-radius: 20px;
  padding: 22px 26px;
  margin-bottom: 16px;
  transition: box-shadow 0.22s ease;
}
.partner-row:hover {
  box-shadow: 0 8px 24px rgba(26, 34, 64, 0.08);
}
.partner-row:last-child {
  margin-bottom: 0;
}
.partner-row__badge {
  position: relative;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(26, 34, 64, 0.08);
  overflow: hidden;
}
.partner-row__badge picture {
  display: contents;
}
.partner-row__badge img {
  position: absolute;
  inset: 9px;
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  object-fit: contain;
}
.partner-row__body {
  flex: 1;
  min-width: 0;
}
.partner-row__name {
  font-size: 15px;
  font-weight: 700;
  color: #1a2240;
  margin-bottom: 4px;
}
.partner-row__intro {
  font-size: 13px;
  color: rgba(26, 34, 64, 0.6);
  line-height: 1.55;
}
.partner-row__cta {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  color: #c9a844;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 68, 0.4);
  padding-bottom: 2px;
  white-space: nowrap;
}
.partner-row__cta:hover {
  color: #a8882e;
}
@media (max-width: 640px) {
  .partner-row {
    flex-wrap: wrap;
  }
  .partner-row__cta {
    margin-left: 72px;
  }
}

.field-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .field-grid2 {
    grid-template-columns: 1fr;
  }
}

.contact-form {
  background: #fff;
  border: 1px solid rgba(26, 34, 64, 0.08);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 2px 14px rgba(26, 34, 64, 0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form__title {
  font-size: 18px;
  font-weight: 700;
  color: #1a2240;
  margin-bottom: 4px;
}

/* ── Anfrageformular ── */
.form-split {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 1024px) {
  .form-split {
    grid-template-columns: 1fr;
  }
}

.field-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .field-grid2 {
    grid-template-columns: 1fr;
  }
}

.field-grid3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .field-grid3 {
    grid-template-columns: 1fr;
  }
}

.field--span-2 {
  grid-column: span 2;
}

.form-check-price {
  margin-left: 8px;
  font-size: 12px;
  color: rgba(26, 34, 64, 0.5);
}

.steps {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.steps__item {
  display: flex;
  align-items: center;
}
.steps__label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(26, 34, 64, 0.35);
}
.steps__label.is-active {
  font-weight: 700;
  color: #1a2240;
}
.steps__label.is-done {
  color: rgba(26, 34, 64, 0.5);
}
.steps__arrow {
  margin: 0 6px;
}

.request-form {
  background: #fff;
  border: 1px solid rgba(26, 34, 64, 0.08);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 2px 14px rgba(26, 34, 64, 0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.request-form__section-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a2240;
}
.request-form__section-title--spaced {
  margin-top: 8px;
}

.summary-card {
  position: sticky;
  top: 24px;
  background: #fff;
  border: 1px solid rgba(26, 34, 64, 0.08);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 8px 32px rgba(26, 34, 64, 0.1);
}
.summary-card__head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(26, 34, 64, 0.08);
}
.summary-card__thumb {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  flex: none;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
}
.summary-card__name {
  font-size: 14px;
  font-weight: 700;
  color: #1a2240;
  margin-bottom: 2px;
}
.summary-card__loc {
  font-size: 12px;
  color: rgba(26, 34, 64, 0.5);
}
.summary-card__rows {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 16px;
}
.summary-card__row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(26, 34, 64, 0.65);
}
.summary-card__row strong {
  color: #1a2240;
  font-weight: 600;
}
.summary-card__totals {
  border-top: 1px solid rgba(26, 34, 64, 0.08);
  padding-top: 16px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.summary-card__total-final {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  color: #1a2240;
  border-top: 1px solid rgba(26, 34, 64, 0.08);
  padding-top: 8px;
  margin-top: 4px;
}
.summary-card__btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #1a2240;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 0;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  margin-bottom: 12px;
}
.summary-card__btn:hover {
  background: #2a3560;
}
.summary-card__note {
  font-size: 11px;
  color: rgba(26, 34, 64, 0.4);
  text-align: center;
  line-height: 1.5;
}

/* ── Detailpagina (Ferienwohnung Alpina) ── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  width: 100%;
  aspect-ratio: 2.7/1;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  margin-bottom: 32px;
  cursor: pointer;
}
.gallery-grid > div:first-child {
  grid-row: 1/3;
}
.gallery-grid > div:not(.gallery-grid__see-all) {
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
}
.gallery-grid[data-count="1"] {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.gallery-grid[data-count="2"] {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}
.gallery-grid[data-count="2"] > div:first-child {
  grid-row: 1;
}
.gallery-grid[data-count="3"] {
  grid-template-columns: 1.4fr 1fr;
}
.gallery-grid[data-count="4"] {
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
}
.gallery-grid[data-count="4"] > div:first-child {
  grid-row: 1/4;
}
.gallery-grid__see-all {
  grid-row: 2;
  grid-column: 3;
  position: absolute;
  inset: 0;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
  cursor: pointer;
}
.gallery-grid__see-all-badge {
  background: #fff;
  color: #1a2240;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
@media (max-width: 640px) {
  .gallery-grid {
    grid-template-rows: auto;
    aspect-ratio: auto;
    height: auto;
  }
  .gallery-grid > div:first-child {
    aspect-ratio: 4/3;
  }
  .gallery-grid > div:not(:first-child) {
    aspect-ratio: 3/2;
  }
  .gallery-grid, .gallery-grid[data-count] {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-grid > div:first-child, .gallery-grid[data-count] > div:first-child {
    grid-row: auto;
  }
  .gallery-grid__see-all {
    grid-row: auto;
    grid-column: auto;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 28, 0.94);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open {
  display: flex;
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.lightbox__close {
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  font-size: 20px;
}
.lightbox__prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 22px;
}
.lightbox__next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 22px;
}
.lightbox__img {
  max-width: 82%;
  max-height: 78%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox__counter {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(26, 34, 64, 0.6);
  text-decoration: none;
  margin-bottom: 14px;
}
.detail-back img {
  transition: transform 0.15s ease;
}
.detail-back:hover {
  color: #c9a844;
}
.detail-back:hover img {
  transform: translateX(-2px);
}

.detail-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 1024px) {
  .detail-split {
    grid-template-columns: minmax(0, 1fr);
  }
}

.detail-head {
  margin-bottom: 32px;
}
.detail-head__title {
  font-size: 30px;
  font-weight: 700;
  color: #1a2240;
  margin-bottom: 8px;
}
.detail-head__loc {
  font-size: 13px;
  color: rgba(26, 34, 64, 0.55);
  margin-bottom: 14px;
}
.detail-head__stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.detail-head__stats span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(26, 34, 64, 0.6);
}
.detail-head__features {
  font-size: 13px;
  color: #c9a844;
  margin-bottom: 10px;
}
.detail-head__meta {
  font-size: 12px;
  color: rgba(26, 34, 64, 0.45);
}

.detail-section-title {
  font-size: 19px;
  font-weight: 700;
  color: #1a2240;
  margin-bottom: 14px;
}
.detail-section-title--flush {
  margin-bottom: 0;
}
.detail-section-title--loose {
  margin-bottom: 24px;
}

.amenities-groups {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.amenity-group__title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(26, 34, 64, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 640px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}
.amenities-grid span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #1a2240;
}
.amenities-grid svg, .amenities-grid img {
  flex: none;
}

.availability-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.availability-head__nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.availability-head__btn {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(26, 34, 64, 0.14);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1a2240;
}
.availability-head__btn:disabled {
  color: rgba(26, 34, 64, 0.25);
  cursor: not-allowed;
  opacity: 0.5;
}

.availability-note {
  font-size: 12px;
  color: rgba(26, 34, 64, 0.55);
  margin: -10px 0 14px;
}

#kalWisBtn {
  background: #fff;
}

.calendar-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.calendar {
  flex: 1;
  min-width: 240px;
  background: #fff;
  border: 1px solid rgba(26, 34, 64, 0.08);
  border-radius: 16px;
  padding: 18px;
}
.calendar__title {
  font-size: 13px;
  font-weight: 700;
  color: #1a2240;
  margin-bottom: 10px;
}
.calendar__weekdays, .calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar__weekdays {
  margin-bottom: 6px;
}
.calendar__weekdays span {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: rgba(26, 34, 64, 0.4);
}
.calendar__day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  height: auto;
  min-height: 34px;
  padding: 4px 0;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}
.calendar__day--frei {
  background: rgba(63, 138, 95, 0.16);
  color: #2e6b54;
}
.calendar__day--reserviert {
  background: rgba(201, 168, 68, 0.22);
  color: #a8882e;
}
.calendar__day--besetzt {
  background: rgba(196, 68, 68, 0.14);
  color: #b23b3b;
}
.calendar__day--blank {
  visibility: hidden;
}
.calendar__day--half-start, .calendar__day--half-end {
  background: linear-gradient(to top right, var(--from) 50%, var(--to) 50%);
}
.calendar__day--past {
  opacity: 0.35;
}
.calendar__day--selected, .calendar__day--selected:hover {
  background: #1a2240;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.calendar__day--selected-mid {
  background: rgba(26, 34, 64, 0.18);
  color: #1a2240;
}
.calendar__day[data-selectable] {
  cursor: pointer;
}
.calendar__day[data-selectable]:hover {
  opacity: 0.8;
}
.calendar__day[data-price]::after {
  content: attr(data-price);
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  opacity: 0.8;
}
.calendar__day--selected[data-price]::after, .calendar__day--selected:hover[data-price]::after {
  opacity: 1;
}
.calendar__day--offday {
  position: relative;
}
.calendar__day--offday::before {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(26, 34, 64, 0.4);
}

.calendar-alert {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-alert.is-hidden {
  display: none;
}
.calendar-alert__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 28, 0.55);
}
.calendar-alert__box {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 28px 26px;
  max-width: 360px;
  width: calc(100% - 40px);
  text-align: center;
  box-shadow: 0 20px 60px rgba(4, 12, 28, 0.3);
}
.calendar-alert__msg {
  font-size: 14px;
  color: #1a2240;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
}
.calendar-alert__btn {
  background: #1a2240;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}
.calendar-alert__btn:hover {
  background: #2a3560;
}

.calendar-legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.calendar-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(26, 34, 64, 0.55);
}
.calendar-legend i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: inline-block;
}
.calendar-legend .legend-frei {
  background: rgba(63, 138, 95, 0.35);
}
.calendar-legend .legend-reserviert {
  background: rgba(201, 168, 68, 0.4);
}
.calendar-legend .legend-besetzt {
  background: rgba(196, 68, 68, 0.3);
}
.calendar-legend__price-note {
  margin-left: auto;
  font-style: italic;
  color: rgba(26, 34, 64, 0.4);
}

.location-map {
  height: 320px;
  border-radius: 24px;
  overflow: visible;
  position: relative;
  border: 1px solid rgba(26, 34, 64, 0.1);
  margin-bottom: 14px;
  background: #e4dfd0;
  transition: height 0.35s ease;
}
.location-map.is-expanded {
  height: 640px;
}
.location-map__surface {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
}
.location-map__surface iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.location-map__surface #huisMap {
  width: 100%;
  height: 100%;
}
.location-map__price-badge {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1a2240;
  color: #fff;
  padding: 7px 16px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(4, 12, 28, 0.25);
  border: 2px solid #c9a844;
  white-space: nowrap;
  pointer-events: none;
}
.location-map__pin {
  position: absolute;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #1a2240;
  padding: 5px 12px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(4, 12, 28, 0.18);
  border: 1px solid rgba(26, 34, 64, 0.12);
  font-family: inherit;
  z-index: 2;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.location-map__pin:hover, .location-map__pin.is-open {
  background: #1a2240;
  color: #fff;
  border-color: #c9a844;
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 5px 14px rgba(4, 12, 28, 0.3);
}
.location-map__pin:focus-visible {
  outline: 2px solid #c9a844;
  outline-offset: 2px;
}
.location-map__expand-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  color: #1a2240;
  border: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 9px 16px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(4, 12, 28, 0.2);
  cursor: pointer;
  z-index: 3;
}

.sticky-side {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .sticky-side {
    top: 80px;
  }
}

.host-card {
  background: #fff;
  border: 1px solid rgba(26, 34, 64, 0.08);
  border-radius: 20px;
  padding: 22px 24px;
}
.host-card__label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(26, 34, 64, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.host-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #1a2240;
  margin-bottom: 6px;
}
.host-card__addr {
  font-size: 13px;
  color: rgba(26, 34, 64, 0.6);
  line-height: 1.6;
}
.host-card__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
}
.host-card__links a {
  font-size: 13px;
  color: #1a2240;
  text-decoration: none;
}
.host-card__links a:hover {
  color: #c9a844;
}

.booking-card {
  background: #fff;
  border: 1px solid rgba(26, 34, 64, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(26, 34, 64, 0.1);
}
.booking-card__label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(26, 34, 64, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.booking-card__label--fees {
  border-top: 1px solid rgba(26, 34, 64, 0.08);
  padding-top: 16px;
}
.booking-card__label--fees:first-child {
  border-top: none;
  padding-top: 0;
}
.booking-card__rows {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
}
.booking-card__rows--fees {
  margin-bottom: 22px;
}
.booking-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  color: rgba(26, 34, 64, 0.7);
}
.booking-card__row strong {
  color: #1a2240;
  font-weight: 700;
}
.booking-card__row small {
  font-size: 11px;
  color: rgba(26, 34, 64, 0.4);
  white-space: nowrap;
}
.booking-card__row__value {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  flex-shrink: 0;
}
.booking-card__row > span:first-child {
  min-width: 0;
}
.booking-card__dates {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
.booking-card__persons {
  margin-bottom: 20px;
}
.booking-card__submit {
  display: block;
  width: 100%;
  text-align: center;
  background: #1a2240;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 0;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 12px;
}
.booking-card__submit:hover {
  background: #2a3560;
  color: #fff;
}
.booking-card__submit.is-disabled {
  background: rgba(26, 34, 64, 0.08);
  color: rgba(26, 34, 64, 0.4);
  cursor: not-allowed;
}
.booking-card__submit.is-disabled:hover {
  background: rgba(26, 34, 64, 0.08);
  color: rgba(26, 34, 64, 0.4);
}
.booking-card__submit--host {
  margin-top: 2px;
  margin-bottom: 0;
}
.booking-card__note {
  font-size: 11px;
  color: rgba(26, 34, 64, 0.4);
  text-align: center;
  line-height: 1.5;
}
.booking-card__fee-note {
  font-size: 11px;
  color: rgba(26, 34, 64, 0.4);
  line-height: 1.5;
  margin-top: -4px;
}

.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 88px;
  padding-bottom: 104px;
}
.error-page__icon {
  font-size: 30px;
  color: #c9a844;
  margin-bottom: 12px;
}
.error-page__code {
  font-size: 104px;
  font-weight: 800;
  color: #1a2240;
  line-height: 1;
  letter-spacing: -0.02em;
}
.error-page__title {
  font-size: 30px;
  font-weight: 700;
  color: #1a2240;
  margin-top: 8px;
  margin-bottom: 12px;
}
.error-page__message {
  font-size: 15px;
  color: rgba(26, 34, 64, 0.6);
  max-width: 440px;
  line-height: 1.6;
  margin-bottom: 36px;
}
.error-page__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.error-page__request-id {
  margin-top: 32px;
  font-size: 12px;
  color: rgba(26, 34, 64, 0.4);
}
.error-page__request-id code {
  color: rgba(26, 34, 64, 0.55);
}
@media (max-width: 640px) {
  .error-page {
    padding-top: 56px;
    padding-bottom: 72px;
  }
  .error-page__code {
    font-size: 68px;
  }
  .error-page__title {
    font-size: 22px;
  }
}

/* ── Rechtliche Seiten (AGB, Datenschutz, Cookies) ── */
.legal-content {
  max-width: 760px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(26, 34, 64, 0.7);
}
.legal-content h1, .legal-content h2, .legal-content h3, .legal-content h4 {
  color: #1a2240;
  font-weight: 700;
  line-height: 1.3;
}
.legal-content h1 {
  font-size: 24px;
  margin: 36px 0 16px;
}
.legal-content h2 {
  font-size: 20px;
  margin: 36px 0 14px;
}
.legal-content h3 {
  font-size: 17px;
  margin: 28px 0 12px;
}
.legal-content h4 {
  font-size: 15px;
  margin: 24px 0 10px;
}
.legal-content > :first-child,
.legal-content h1:first-child, .legal-content h2:first-child, .legal-content h3:first-child {
  margin-top: 0;
}
.legal-content p {
  margin-bottom: 16px;
}
.legal-content ul, .legal-content ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
.legal-content li {
  margin-bottom: 8px;
}
.legal-content li:last-child {
  margin-bottom: 0;
}
.legal-content a {
  color: #a8882e;
  text-decoration: underline;
}
.legal-content a:hover {
  color: #c9a844;
}
.legal-content strong, .legal-content b {
  color: #1a2240;
  font-weight: 700;
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 14px;
}
.legal-content th, .legal-content td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(26, 34, 64, 0.08);
}
.legal-content th {
  color: #1a2240;
  font-weight: 700;
}
.legal-content blockquote {
  border-left: 3px solid rgba(201, 168, 68, 0.4);
  margin: 0 0 16px;
  padding: 4px 0 4px 18px;
  color: rgba(26, 34, 64, 0.6);
}
.legal-content hr {
  border: none;
  border-top: 1px solid rgba(26, 34, 64, 0.08);
  margin: 32px 0;
}
