@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;
}

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;
  }
}

@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 {
  flex: none;
}

/* ── Inner-page nav (solid, sticky) ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  min-height: 88px;
  background: #f0ece0;
  border-bottom: 1px solid rgba(26, 34, 64, 0.09);
  flex-wrap: wrap;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav__logo-link {
  display: flex;
  align-items: center;
}
.nav__logo {
  height: 40px;
  width: auto;
}
.nav__links {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.nav__link {
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 34, 64, 0.62);
}
.nav__link:hover {
  color: #1a2240;
}
.nav__link--active {
  font-weight: 700;
  color: #1a2240;
}
.nav__link--cta {
  color: #c9a844;
  border-bottom: 1px solid rgba(201, 168, 68, 0.4);
  padding-bottom: 1px;
}
.nav__link--cta:hover {
  color: #a8882e;
}
.nav__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav__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;
  border: none;
  cursor: pointer;
}
.nav__login:hover {
  background: #2a3560;
}
@media (max-width: 1024px) {
  .nav {
    padding: 0 32px;
  }
}
@media (max-width: 640px) {
  .nav {
    padding: 0 20px;
  }
}

/* ── Home nav (fixed, transparent → solid on scroll, hamburger) ── */
.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 {
  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 {
  height: 50px;
  display: block;
}
.nav-home.is-scrolled .nav-home__logo-icon {
  display: none;
}
.nav-home.is-scrolled .lang-drop__btn {
  background: rgba(26, 34, 64, 0.07);
  border-color: transparent;
  color: #1a2240;
}
.nav-home.is-scrolled .nav-home__link {
  color: rgba(26, 34, 64, 0.62);
  text-shadow: none;
}
.nav-home.is-scrolled .nav-home__link:hover {
  color: #1a2240;
}
.nav-home.is-scrolled .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 {
  color: #a8882e;
}
.nav-home__logo-frame {
  display: flex;
  align-items: center;
}
.nav-home__logo-icon {
  height: 96px;
  width: 96px;
  border-radius: 50%;
  border: 4px solid #f0ece0;
  box-shadow: 0 2px 10px rgba(4, 12, 28, 0.25);
  display: block;
  transition: height 0.3s ease, width 0.3s ease;
}
.nav-home__logo {
  height: 58px;
  width: auto;
  display: none;
  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--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;
}
@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;
  }
}
@media (max-width: 768px) {
  .nav-home {
    padding: 0 20px;
    height: 88px;
  }
  .nav-home.is-scrolled {
    height: 64px;
  }
}

/* ── Hamburger (home only) ── */
.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: #1a2240;
  border-radius: 2px;
  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);
}
.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: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;
  inset: 60px 0 0 0;
  background: #fff;
  z-index: 99;
  padding: 32px 24px;
  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 svg {
  transition: transform 0.2s;
}
.lang-drop__btn.is-open svg {
  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 {
  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 {
  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;
}
.footer__social-link:hover {
  border-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__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--gold:hover {
  background: #d9bc5f;
}
.btn--navy {
  background: #1a2240;
  color: #f8f4ec;
}
.btn--navy:hover {
  background: #2a3560;
}
.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--outline:hover {
  border-color: #1a2240;
  color: #1a2240;
}

.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 {
  flex: none;
}

/* Shared property-card styles (home + listings page) */
.prop-card {
  display: block;
  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: 210px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.prop-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}
.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 {
  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;
}
.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__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;
}

/* ── 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;
  padding-bottom: 120px;
}
.hero-home__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}
@media (max-width: 1024px) {
  .hero-home__inner {
    padding: 0 32px;
  }
}
@media (max-width: 640px) {
  .hero-home__inner {
    padding: 0 20px;
  }
}
.hero-home__inner {
  animation: fadeUp 0.9s ease both;
}
.hero-home__text {
  display: block;
  max-width: 600px;
  margin-left: auto;
  text-align: right;
  opacity: 0.95;
}
.hero-home__title {
  font-size: 52px;
  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__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-home__list li {
  font-size: 18px;
  color: #fff;
  text-shadow: 0 1px 14px rgba(4, 12, 28, 0.55);
}
@media (max-width: 768px) {
  .hero-home {
    height: 100vh;
  }
  .hero-home__title {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .hero-home__title {
    font-size: 26px;
  }
}

/* ── 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;
    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;
}
.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: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .activities-home__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .activities-home__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .activities-home__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.activities-home__card {
  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;
}
.activities-home__card:hover {
  box-shadow: 0 10px 32px rgba(26, 34, 64, 0.13);
  transform: translateY(-4px);
}
.activities-home__card-img {
  height: 130px;
  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;
}

/* ── 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 440px;
  height: 360px;
  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__count {
  font-size: 14px;
  color: rgba(26, 34, 64, 0.55);
  margin-top: 8px;
}

.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__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;
}
@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 {
    width: 100% !important;
  }
}

.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: hidden;
  position: relative;
  background: #e4dfd0;
  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;
}
.map-panel__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-panel__pin {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 1;
  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);
}
.map-panel__pin--active {
  background: #1a2240;
  color: #fff;
  border: 2px solid #c9a844;
}
@media (max-width: 1024px) {
  .map-panel.is-visible {
    height: 360px;
  }
}
@media (max-width: 640px) {
  .map-panel.is-visible {
    height: 280px;
  }
}

.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__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);
}

/* ── Über 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);
}

.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;
}

.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 {
  border-radius: 20px;
  overflow: hidden;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* ── Contact ── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 1024px) {
  .contact-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;
  }
}

.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;
}

.info-card {
  background: #fff;
  border: 1px solid rgba(26, 34, 64, 0.08);
  border-radius: 24px;
  padding: 28px;
}
.info-card__label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(26, 34, 64, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.info-card__rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.info-card__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.info-card__row svg {
  flex: none;
  margin-top: 1px;
}
.info-card__row p, .info-card__row a {
  font-size: 13px;
  color: rgba(26, 34, 64, 0.65);
  line-height: 1.6;
  text-decoration: none;
}
.info-card__row a:hover {
  color: #1a2240;
}
.info-card__hours {
  border-top: 1px solid rgba(26, 34, 64, 0.08);
  margin-top: 20px;
  padding-top: 18px;
}
.info-card__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(26, 34, 64, 0.65);
}

.map-frame {
  height: 220px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(26, 34, 64, 0.1);
}
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── 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 130px 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .field-grid3 {
    grid-template-columns: 1fr;
  }
}

.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;
}

.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-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;
  height: 440px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  margin-bottom: 32px;
  cursor: pointer;
}
.gallery-grid > div:first-child {
  grid-row: 1/3;
}
.gallery-grid > div {
  background-size: cover;
  background-position: center;
}
.gallery-grid__see-all {
  position: absolute;
  bottom: 16px;
  right: 16px;
  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);
  cursor: pointer;
}
@media (max-width: 1024px) {
  .gallery-grid {
    height: 360px;
  }
}
@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .gallery-grid > div:first-child {
    grid-row: auto;
    height: 220px;
  }
  .gallery-grid > div:not(:first-child) {
    height: 120px;
  }
}

.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-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 1024px) {
  .detail-split {
    grid-template-columns: 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;
}

.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 {
  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;
}

.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;
  align-items: center;
  justify-content: center;
  height: 34px;
  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-legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.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);
}

.location-map {
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  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 iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.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;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(4, 12, 28, 0.18);
  border: 1px solid rgba(26, 34, 64, 0.12);
}
.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;
}

.sticky-side {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.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__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);
}
.booking-card__dates {
  display: grid;
  grid-template-columns: 1fr 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;
}
.booking-card__note {
  font-size: 11px;
  color: rgba(26, 34, 64, 0.4);
  text-align: center;
  line-height: 1.5;
}
