:root {
  --bg: #f7faf8;
  --bg-soft: #edf5ef;
  --surface: #ffffff;
  --surface-soft: #f2f8f4;
  --text: #173125;
  --muted: #5f7467;
  --line: #d8e5dc;
  --primary: #2f8f57;
  --primary-strong: #216741;
  --primary-soft: #dff2e6;
  --available: #2f8f57;
  --unavailable: #c75f4f;
  --unknown: #9eada3;
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 12px 28px rgba(32, 68, 48, 0.08);
  --shadow-md: 0 22px 48px rgba(24, 56, 38, 0.12);
  --shadow-lg: 0 30px 64px rgba(22, 52, 36, 0.16);
  --container: 1280px;
  --gutter: clamp(1rem, 4.6vw, 2rem);
  --ease: 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --mobile-nav-collapsed-size: 56px;
  --mobile-nav-top-gap: 0.72rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

.password-gate-page {
  min-height: 100vh;
  background:
    radial-gradient(
      900px 520px at 8% 0%,
      rgba(223, 242, 230, 0.92),
      rgba(223, 242, 230, 0) 56%
    ),
    radial-gradient(
      980px 560px at 100% 100%,
      rgba(206, 235, 218, 0.88),
      rgba(206, 235, 218, 0) 54%
    ),
    linear-gradient(160deg, #f2faf5 0%, #edf7f1 100%);
}

.password-gate {
  min-height: 100vh;
  width: min(1040px, calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: clamp(1.2rem, 4vw, 2.4rem) 0;
}

.password-gate-card {
  width: min(560px, 100%);
  padding: clamp(1.25rem, 3.4vw, 2rem);
  border: 1px solid rgba(157, 199, 175, 0.72);
  border-radius: 20px;
  background:
    radial-gradient(
      130% 130% at 100% 0%,
      rgba(223, 242, 230, 0.75),
      rgba(223, 242, 230, 0) 56%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.97),
      rgba(239, 248, 243, 0.92)
    );
  box-shadow: 0 20px 44px rgba(29, 69, 46, 0.16);
}

.password-gate-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(47, 143, 87, 0.11);
  color: #1d6040;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.password-gate-kicker::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f8f57, #7cbf97);
}

.password-gate-card h1 {
  margin-bottom: 0.6rem;
  color: #133525;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.password-gate-card p {
  color: #355747;
}

.password-gate-error {
  margin: 0 0 0.9rem;
  padding: 0.6rem 0.78rem;
  border-radius: 10px;
  border: 1px solid rgba(199, 95, 79, 0.35);
  background: rgba(199, 95, 79, 0.08);
  color: #93473b;
  font-size: 0.92rem;
}

.password-gate-form {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.3rem;
}

.password-gate-form label {
  color: #254a38;
  font-weight: 700;
  font-size: 0.92rem;
}

.password-gate-form input {
  border: 1px solid rgba(156, 193, 171, 0.8);
  border-radius: 12px;
  padding: 0.7rem 0.78rem;
  font: inherit;
  color: #173125;
  background: rgba(255, 255, 255, 0.94);
}

.password-gate-form input:focus-visible {
  outline: 2px solid rgba(47, 143, 87, 0.36);
  outline-offset: 1px;
  border-color: rgba(47, 143, 87, 0.72);
}

.password-gate-submit {
  margin-top: 0.52rem;
  width: fit-content;
}

.password-gate-submit::after {
  content: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      1200px 620px at 4% -2%,
      #e6f4eb 0%,
      rgba(230, 244, 235, 0) 58%
    ),
    radial-gradient(
      1100px 620px at 104% 16%,
      #eef8f1 0%,
      rgba(238, 248, 241, 0) 54%
    ),
    linear-gradient(180deg, #f7faf8 0%, #f3f8f5 56%, #f7faf8 100%);
  line-height: 1.65;
  letter-spacing: 0.005em;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  background: linear-gradient(
    160deg,
    rgba(47, 143, 87, 0.82),
    rgba(33, 103, 65, 0.8)
  );
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 320ms cubic-bezier(0.22, 0.74, 0.19, 1),
    visibility 0ms linear 0ms;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 320ms cubic-bezier(0.22, 0.74, 0.19, 1),
    visibility 0ms linear 320ms;
}

.page-loader-card {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.page-loader-brand {
  margin: 0;
  font-family: "Fraunces", "Palatino Linotype", serif;
  font-size: clamp(1.1rem, 3vw, 1.32rem);
  color: #ffffff;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(10, 32, 21, 0.22);
}

.page-loader-spinner {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-top-color: #ffffff;
  animation: page-loader-spin 900ms linear infinite;
}

@keyframes page-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes side-nav-shimmer {
  0% {
    opacity: 0;
    transform: translate3d(24%, 0, 0);
  }
  14% {
    opacity: 0;
  }
  34% {
    opacity: 0.18;
  }
  52% {
    opacity: 0.3;
  }
  78% {
    opacity: 0;
    transform: translate3d(-24%, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(-24%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader,
  .page-loader.is-hidden {
    transition: none;
  }

  .page-loader-spinner {
    animation: none;
  }
}

body > main {
  min-width: 0;
}

a {
  color: var(--primary-strong);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--primary);
}

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

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.narrow {
  width: min(780px, calc(100% - (var(--gutter) * 2)));
}

.section {
  padding: clamp(2.6rem, 4.8vw, 4.8rem) 0;
}

.section.section-no-top {
  padding-top: 0;
}

@media (max-width: 819px) {
  :root {
    --gutter: clamp(1.08rem, 5.2vw, 1.4rem);
    --mobile-content-gutter: clamp(0.94rem, 4.5vw, 1.18rem);
    --mobile-nav-collapsed-size: 58px;
    --mobile-overlay-edge: calc(var(--gutter) * 0.5);
  }

  .section {
    padding: clamp(2rem, 6.8vw, 2.9rem) 0;
  }

  .container.contact-layout,
  .container.travel-layout,
  .container.travel-map-wrap,
  .container.home-story-layout,
  .container.house-story-layout,
  .container.calendar-section,
  .container.narrow.floorplan-layout,
  .apartment-section:not(#fotos) > .container {
    width: min(var(--container), calc(100% - (var(--mobile-content-gutter) * 2)));
    padding-inline: 0;
  }

  .hero,
  .apartment-hero,
  .subpage-hero {
    overflow-x: hidden;
    overflow-y: visible;
  }

  .home-gallery-section,
  .house-gallery-section,
  .apartment-section#fotos {
    overflow-x: hidden;
  }

  .hero-content,
  .apartment-hero-panel,
  .subpage-hero-panel {
    max-width: 100%;
  }

  .card,
  .availability,
  .slider,
  .image-card,
  .faq-item {
    border-radius: 16px;
  }

  .card {
    padding: 1rem;
  }

  .card-body,
  .faq-item summary,
  .faq-answer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .slider {
    padding: 0.8rem 0.7rem 0.85rem;
    --slider-btn-y-offset: 0.95rem;
  }

  .slide {
    --slide-pad: 0.15rem;
  }

  .slider-btn.prev {
    left: 0.2rem;
  }

  .slider-btn.next {
    right: 0.2rem;
  }

  .month-card {
    padding: 0.72rem;
  }

  .calendar-meta {
    align-items: flex-start;
  }

  .floorplan-layout,
  .calendar-section {
    padding-inline: 0;
  }

  .availability {
    padding: 1.08rem;
  }

  .apartment-sticky-info {
    margin-top: 1.1rem;
  }

  .apartment-sticky-info-inner {
    grid-template-columns: minmax(0, 1fr);
    padding: 0.44rem 0.5rem;
    gap: 0.22rem;
  }

  .apartment-sticky-main {
    display: none;
  }

  .apartment-sticky-nav {
    gap: 0.32rem;
    padding: 0.05rem 0.02rem 0.08rem;
  }
}

.section-soft {
  position: relative;
}

.section-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(223, 242, 230, 0.56),
    rgba(242, 248, 244, 0.24)
  );
  pointer-events: none;
}

.section-soft > .container,
.section-soft > .container.narrow {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
  color: #5f7868;
}

.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: #82b097;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  line-height: 1.14;
  color: #112a20;
  font-family: "Fraunces", "Palatino Linotype", serif;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.35rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3.6vw, 2.35rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
}

p,
ul,
ol {
  margin: 0 0 1rem;
}

ul,
ol {
  padding-left: 1.18rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(12px);
  background: rgba(248, 252, 249, 0.88);
  border-bottom: 1px solid rgba(180, 205, 189, 0.42);
  transition:
    box-shadow var(--ease),
    background var(--ease),
    border-color var(--ease);
}

.site-header.scrolled {
  background: rgba(248, 252, 249, 0.96);
  border-color: rgba(164, 194, 176, 0.56);
  box-shadow: 0 10px 24px rgba(34, 67, 49, 0.08);
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 0;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #163728;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(24px, 6vw, 34px);
}

.brand-text {
  font-family: "Fraunces", serif;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-fallback {
  display: none;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  transition:
    border-color var(--ease),
    transform var(--ease),
    background var(--ease);
}

.nav-toggle:hover {
  border-color: #90b8a0;
  transform: translateY(-1px);
}

.nav-toggle > span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #184330;
  transition:
    transform var(--ease),
    opacity var(--ease),
    background var(--ease);
}

.nav-toggle.is-open > span:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open > span:nth-of-type(3) {
  opacity: 0;
}

.nav-toggle.is-open > span:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-nav {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    max-height var(--ease),
    opacity var(--ease),
    padding var(--ease);
}

.site-nav.open {
  max-height: 72vh;
  opacity: 1;
  pointer-events: auto;
  padding: 0.3rem 0 0.6rem;
}

.site-nav-item {
  display: grid;
  gap: 0.2rem;
}

.site-nav-item > a {
  display: inline-flex;
  justify-self: start;
  width: fit-content;
  position: relative;
  text-decoration: none;
  color: #284738;
  font-weight: 650;
  font-size: 1.03rem;
  padding: 0.52rem 0 0.66rem;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
  transition:
    color var(--ease),
    letter-spacing var(--ease);
}

.site-nav-item > a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #2f8f57;
  transform: scaleX(0.18);
  transform-origin: left center;
  opacity: 0;
  transition:
    transform 420ms cubic-bezier(0.22, 0.74, 0.19, 1),
    opacity 320ms ease;
}

.site-nav-item > a:hover,
.site-nav-item > a:focus-visible,
.site-nav-item > a.active {
  color: #1a5b39;
  letter-spacing: 0.01em;
}

.site-nav-item > a:hover::before,
.site-nav-item > a:focus-visible::before,
.site-nav-item > a.active::before {
  transform: scaleX(1);
  opacity: 1;
}

.site-nav-item > a.active {
  font-weight: 800;
}

.site-subnav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  margin: 0 0 0.55rem;
  padding: 0.16rem 0 0.4rem 0.62rem;
}

.site-subnav a {
  position: relative;
  display: block;
  max-width: max-content;
  font-size: 0.9rem;
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #456457;
  text-decoration: none;
  padding: 0.24rem 0;
  transition:
    color var(--ease),
    transform var(--ease),
    font-weight var(--ease);
}

.site-subnav a:hover,
.site-subnav a:focus-visible {
  color: #1d6140;
  transform: translateX(1px);
}

.site-subnav a.is-current {
  color: #144b31;
  font-weight: 800;
}

.site-subnav a[href="#verfuegbarkeit"] {
  display: inline;
  padding: 0.24rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #2f8f57;
  font-weight: 820;
  box-shadow: none;
}

.site-subnav a[href="#verfuegbarkeit"]::before {
  content: none;
}

.site-subnav a[href="#verfuegbarkeit"]::after {
  content: none;
}

.site-subnav a[href="#verfuegbarkeit"]:hover,
.site-subnav a[href="#verfuegbarkeit"]:focus-visible {
  color: #37a165;
  transform: translateX(1px);
}

.site-subnav a[href="#verfuegbarkeit"].is-current {
  color: #2b975f;
  font-weight: 860;
  text-decoration: underline;
  text-decoration-thickness: 0.11em;
  text-underline-offset: 0.2em;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  font-weight: 800;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary) 0%, #46a96f 100%);
  box-shadow: 0 12px 24px rgba(45, 142, 85, 0.24);
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    filter var(--ease);
}

.button::after {
  content: "\2192";
  font-size: 0.9rem;
  opacity: 0.8;
  transform: translateX(0);
  transition:
    transform var(--ease),
    opacity var(--ease);
}

.request-actions .button::after {
  content: none;
}

.button:hover,
.button:focus-visible {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(37, 125, 72, 0.28);
  filter: saturate(1.03);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(2px);
  opacity: 1;
}

.button-no-arrow::after {
  content: none;
}

.button-ghost-light {
  border-color: rgba(228, 244, 234, 0.48);
  color: #ffffff;
  background: rgba(227, 243, 233, 0.16);
  box-shadow: 0 12px 26px rgba(9, 31, 20, 0.24);
}

.button-ghost-light:hover,
.button-ghost-light:focus-visible {
  color: #ffffff;
  background: rgba(227, 243, 233, 0.24);
  box-shadow: 0 15px 28px rgba(9, 31, 20, 0.3);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (max-width: 979px) {
  .site-header {
    position: fixed;
    top: var(--mobile-overlay-edge, var(--mobile-nav-top-gap));
    right: var(--mobile-overlay-edge, var(--gutter));
    left: auto;
    width: var(--mobile-nav-collapsed-size);
    margin: 0;
    border: 0;
    border-radius: 14px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    overflow: clip;
    transform-origin: right top;
    transition:
      width var(--ease),
      border-color var(--ease),
      box-shadow var(--ease),
      background var(--ease);
  }

  .site-header.scrolled {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
  }

  .site-header .container {
    width: 100%;
    margin: 0;
  }

  .header-inner {
    min-height: 0;
    gap: 0;
    padding: 0.32rem;
  }

  .header-top {
    justify-content: flex-end;
    gap: 0.5rem;
  }

  .brand {
    display: none;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    border-radius: 11px;
    flex: 0 0 48px;
  }

  .site-header:not(.menu-open) .nav-toggle {
    border: 0;
    background: rgba(247, 252, 249, 0.92);
    box-shadow: 0 8px 18px rgba(29, 63, 43, 0.14);
  }

  .site-header:not(.menu-open) .site-nav {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    padding: 0;
  }

  .site-header.menu-open {
    width: calc(100% - (var(--mobile-overlay-edge, var(--gutter)) * 2));
    border-radius: 18px;
    background:
      radial-gradient(
        150% 120% at 0% 0%,
        rgba(226, 244, 233, 0.9),
        rgba(226, 244, 233, 0) 62%
      ),
      rgba(247, 252, 249, 0.98);
    border-color: rgba(149, 187, 166, 0.72);
    box-shadow: 0 16px 34px rgba(25, 60, 40, 0.2);
  }

  .site-header.menu-open .header-inner {
    gap: 1rem;
    padding: 0.76rem;
  }

  .site-header.menu-open .header-top {
    justify-content: space-between;
    align-items: center;
  }

  .site-header.menu-open .brand {
    display: inline-flex;
  }

  .site-header.menu-open .brand-logo {
    height: clamp(42px, 10vw, 58px);
  }

  .site-header.menu-open .site-nav.open {
    padding: 0.48rem 0 0.22rem;
  }

  .site-header.menu-open .nav-toggle {
    border: 1px solid rgba(183, 211, 195, 0.72);
    background: rgba(255, 255, 255, 0.95);
  }

  .site-nav .site-subnav {
    display: none;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }
}

.text-link {
  position: relative;
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  font-weight: 800;
  text-decoration: none;
  color: #1e6940;
}

.text-link::after {
  content: "\203A";
  transition: transform var(--ease);
}

.text-link:hover::after {
  transform: translateX(3px);
}

.hero {
  position: relative;
  min-height: min(84vh, 760px);
  overflow: clip;
  --hero-photo-shift-x: 0px;
  --hero-photo-shift-y: 0px;
  --hero-photo-scale: 1.02;
  --hero-photo-transition-duration: 4200ms;
  --hero-photo-transition-ease: cubic-bezier(0.16, 0.78, 0.18, 1);
}

.hero > img,
.apartment-hero > img,
.subpage-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform:
    translate3d(var(--hero-photo-shift-x), var(--hero-photo-shift-y), 0)
    scale(var(--hero-photo-scale));
  will-change: transform;
  transition:
    transform var(--hero-photo-transition-duration)
      var(--hero-photo-transition-ease);
}

.hero-mobile-brand {
  display: none;
}

.hero-mobile-brand-fallback {
  display: none;
}

.apartment-hero-brand,
.subpage-hero-brand {
  position: absolute;
  top: clamp(1rem, 2.6vw, 1.9rem);
  left: clamp(1rem, 2.8vw, 2.3rem);
  z-index: 4;
  display: none;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.16rem 0.2rem;
  isolation: isolate;
  transition: opacity var(--ease);
}

.apartment-hero-brand::before,
.subpage-hero-brand::before {
  content: "";
  position: absolute;
  inset: -0.72rem -1.34rem -0.68rem -1.3rem;
  border-radius: 999px;
  background: radial-gradient(
    ellipse 78% 58% at 50% 46%,
    rgba(255, 255, 255, 0.62),
    rgba(255, 255, 255, 0) 78%
  );
  filter: blur(4px);
  pointer-events: none;
  z-index: -1;
}

.apartment-hero-brand-logo,
.subpage-hero-brand-logo {
  display: block;
  width: auto;
  height: clamp(34px, 5vw, 52px);
  filter: drop-shadow(0 1px 2px rgba(16, 46, 31, 0.22))
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.58));
}

.apartment-hero-brand-fallback,
.subpage-hero-brand-fallback {
  display: none;
  font-family: "Fraunces", "Palatino Linotype", serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #15452f;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.44);
}

body.mobile-menu-open .apartment-hero-brand,
body.mobile-menu-open .subpage-hero-brand {
  opacity: 0;
  pointer-events: none;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  align-items: end;
  --hero-overlay-bg: linear-gradient(
    180deg,
    rgba(14, 43, 28, 0.15) 15%,
    rgba(9, 34, 22, 0.74) 100%
  );
  background: var(--hero-overlay-bg);
}

.hero-content {
  color: #f2faf5;
  padding-bottom: clamp(2.6rem, 6vw, 5rem);
  max-width: 820px;
}

.hero-content h1 {
  color: #ffffff;
  font-size: clamp(1.9rem, 4.4vw, 3.05rem);
}

.hero-content p {
  font-size: clamp(1.03rem, 2.3vw, 1.28rem);
  max-width: 60ch;
  color: rgba(242, 250, 245, 0.95);
  margin-bottom: 1.5rem;
}

.apartment-hero {
  position: relative;
  min-height: min(76vh, 720px);
  overflow: clip;
  --hero-photo-shift-x: 0px;
  --hero-photo-shift-y: 0px;
  --hero-photo-scale: 1.02;
  --hero-photo-transition-duration: 4200ms;
  --hero-photo-transition-ease: cubic-bezier(0.16, 0.78, 0.18, 1);
}

.apartment-hero-overlay {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  align-items: end;
  padding: clamp(1.2rem, 3vw, 2rem) 0;
  --hero-overlay-bg: linear-gradient(
    180deg,
    rgba(10, 34, 22, 0.14) 4%,
    rgba(10, 34, 22, 0.56) 62%,
    rgba(8, 28, 18, 0.84) 100%
  );
  background: var(--hero-overlay-bg);
}

.apartment-hero-panel {
  width: min(820px, 100%);
  padding: clamp(1.3rem, 3vw, 2.1rem);
  border: 1px solid rgba(230, 244, 234, 0.22);
  border-radius: 1.7rem;
  color: #f3faf5;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: 0 24px 54px rgba(9, 31, 20, 0.24);
  backdrop-filter: blur(8px);
}

.apartment-hero-panel .eyebrow,
.subpage-hero-panel .eyebrow {
  color: rgba(243, 250, 245, 0.94);
}

.hero-content .eyebrow,
.apartment-hero-panel .eyebrow,
.subpage-hero-panel .eyebrow {
  font-size: clamp(0.98rem, 1.9vw, 1.14rem);
}

.apartment-hero-panel .eyebrow::before,
.subpage-hero-panel .eyebrow::before {
  background: rgba(225, 242, 232, 0.9);
}

.apartment-hero-panel h1 {
  color: #ffffff;
  font-size: clamp(1.78rem, 4.3vw, 3.45rem);
  margin-bottom: 0.8rem;
}

.apartment-hero-panel p:not(.eyebrow) {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(243, 250, 245, 0.94);
  max-width: 56ch;
}

.apartment-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.apartment-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.64rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(228, 244, 234, 0.48);
  background: rgba(227, 243, 233, 0.16);
  color: #ffffff;
  font-weight: 760;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(9, 31, 20, 0.24);
  transition:
    background var(--ease),
    transform var(--ease),
    box-shadow var(--ease);
}

.apartment-hero-cta::after {
  content: "\2193";
  font-size: 0.86rem;
  opacity: 0.92;
  transition: transform var(--ease);
}

.apartment-hero-cta:hover,
.apartment-hero-cta:focus-visible {
  color: #ffffff;
  background: rgba(227, 243, 233, 0.24);
  transform: translateY(-1px);
  box-shadow: 0 15px 28px rgba(9, 31, 20, 0.3);
}

.apartment-hero-cta:hover::after,
.apartment-hero-cta:focus-visible::after {
  transform: translateY(0);
}

.apartment-hero-cta-no-arrow::after {
  content: none;
}

.apartment-hero-cta-accent {
  border-color: rgba(102, 191, 134, 0.76);
  background: linear-gradient(
    135deg,
    rgba(47, 143, 87, 0.92),
    rgba(88, 176, 120, 0.84)
  );
}

.apartment-hero-cta-accent:hover,
.apartment-hero-cta-accent:focus-visible {
  background: linear-gradient(
    135deg,
    rgba(53, 153, 94, 0.96),
    rgba(95, 188, 130, 0.88)
  );
}

.apartment-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.apartment-hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(229, 244, 234, 0.14);
  border: 1px solid rgba(229, 244, 234, 0.2);
  color: #f6fbf7;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.apartment-sticky-info {
  position: sticky;
  top: calc(76px + 0.7rem);
  z-index: 72;
  margin-top: 2.2rem;
  padding-bottom: 0.25rem;
}

.apartment-hero-overlay .container,
.apartment-sticky-info .container {
  width: min(
    calc(var(--container) + 1.8rem),
    calc(100% - (var(--gutter) * 1.15))
  );
}

.apartment-sticky-info-inner {
  --apartment-sticky-nav-bleed: 0.84rem;
  position: relative;
  display: grid;
  gap: 0.62rem;
  padding: 0.78rem 0.84rem;
  border: 1px solid rgba(178, 207, 190, 0.7);
  border-radius: 15px;
  background: linear-gradient(
    148deg,
    rgba(248, 253, 250, 0.78),
    rgba(236, 247, 241, 0.72)
  );
  box-shadow:
    0 16px 30px rgba(28, 62, 43, 0.15),
    0 0 24px rgba(116, 176, 143, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
}

.apartment-sticky-main {
  display: grid;
  gap: 0.38rem;
}

.apartment-sticky-kicker {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #60786a;
  font-weight: 700;
}

.apartment-sticky-name {
  margin: 0;
  color: #16382a;
  font-family: "Fraunces", "Palatino Linotype", serif;
  font-size: clamp(1.08rem, 2.4vw, 1.26rem);
  letter-spacing: -0.01em;
  font-weight: 700;
}

.apartment-sticky-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.apartment-sticky-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.3rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(191, 203, 196, 0.76);
  background: rgba(255, 255, 255, 0.9);
  color: #4d5f56;
  font-size: 0.79rem;
  line-height: 1.15;
  font-weight: 720;
}

.apartment-sticky-nav {
  --apartment-sticky-nav-fade: 10px;
  display: flex;
  gap: 0.38rem;
  overflow-x: auto;
  margin-inline: calc(var(--apartment-sticky-nav-bleed, 0px) * -1);
  padding: 0.18rem calc(var(--apartment-sticky-nav-bleed, 0px) + 0.06rem)
    0.24rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 var(--apartment-sticky-nav-fade),
    #000 calc(100% - var(--apartment-sticky-nav-fade)),
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 var(--apartment-sticky-nav-fade),
    #000 calc(100% - var(--apartment-sticky-nav-fade)),
    transparent
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.apartment-sticky-nav a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(173, 203, 186, 0.64);
  background: rgba(236, 247, 240, 0.72);
  color: #315646;
  font-size: 0.8rem;
  line-height: 1;
  font-weight: 700;
  padding: 0.42rem 0.68rem;
  transition:
    border-color var(--ease),
    background var(--ease),
    color var(--ease),
    transform var(--ease);
}

.apartment-sticky-nav a:hover,
.apartment-sticky-nav a:focus-visible {
  border-color: rgba(75, 143, 102, 0.62);
  background: rgba(220, 241, 227, 0.85);
  color: #1b5838;
  transform: translateY(-1px);
}

.apartment-sticky-nav a.is-current {
  border-color: rgba(55, 127, 87, 0.78);
  background: rgba(196, 230, 211, 0.82);
  color: #11482e;
}

.apartment-sticky-nav a[href="#verfuegbarkeit"] {
  border-color: rgba(25, 94, 59, 0.88);
  background: linear-gradient(
    140deg,
    rgba(49, 139, 88, 0.98),
    rgba(32, 99, 63, 0.96)
  );
  color: #f4fbf7;
  font-weight: 790;
  box-shadow: none;
}

.apartment-sticky-nav a[href="#verfuegbarkeit"]::after {
  content: none;
}

.apartment-sticky-nav a[href="#verfuegbarkeit"]:hover,
.apartment-sticky-nav a[href="#verfuegbarkeit"]:focus-visible {
  border-color: rgba(29, 104, 66, 0.92);
  background: linear-gradient(
    140deg,
    rgba(58, 150, 97, 0.98),
    rgba(38, 111, 71, 0.96)
  );
  color: #ffffff;
  box-shadow: none;
}

.apartment-sticky-nav a[href="#verfuegbarkeit"].is-current {
  border-color: rgba(19, 83, 52, 0.95);
  background: linear-gradient(
    140deg,
    rgba(42, 129, 81, 0.99),
    rgba(29, 94, 60, 0.97)
  );
  color: #ffffff;
  box-shadow: none;
}

.subpage-hero {
  position: relative;
  min-height: min(60vh, 560px);
  overflow: clip;
  --hero-photo-shift-x: 0px;
  --hero-photo-shift-y: 0px;
  --hero-photo-scale: 1.02;
  --hero-photo-transition-duration: 4200ms;
  --hero-photo-transition-ease: cubic-bezier(0.16, 0.78, 0.18, 1);
}

.hero.is-pointer-active,
.apartment-hero.is-pointer-active,
.subpage-hero.is-pointer-active {
  --hero-photo-scale: 1.045;
  --hero-photo-transition-duration: 960ms;
  --hero-photo-transition-ease: cubic-bezier(0.2, 0.78, 0.22, 1);
}

.subpage-hero-overlay {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  align-items: end;
  padding: clamp(1.2rem, 3vw, 2rem) 0;
  --hero-overlay-bg: linear-gradient(
    180deg,
    rgba(10, 34, 22, 0.12) 0%,
    rgba(10, 34, 22, 0.48) 58%,
    rgba(8, 28, 18, 0.8) 100%
  );
  background: var(--hero-overlay-bg);
}

.hero-overlay::after,
.apartment-hero-overlay::after,
.subpage-hero-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(var(--hero-overlay-extra-right, 0px) * -1);
  bottom: 0;
  width: var(--hero-overlay-extra-right, 0px);
  background: var(--hero-overlay-bg);
  pointer-events: none;
}

.hero-overlay > .container,
.apartment-hero-overlay > .container,
.subpage-hero-overlay > .container {
  position: relative;
  z-index: 1;
}

.subpage-hero-panel {
  width: min(820px, 100%);
  padding: clamp(1.2rem, 3vw, 1.9rem);
  border: 1px solid rgba(230, 244, 234, 0.2);
  border-radius: 1.6rem;
  color: #f3faf5;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: 0 24px 54px rgba(9, 31, 20, 0.24);
  backdrop-filter: blur(8px);
}

.subpage-hero-panel h1 {
  color: #ffffff;
  font-size: clamp(1.62rem, 3.8vw, 2.9rem);
  margin-bottom: 0.8rem;
}

.subpage-hero-panel p:not(.eyebrow) {
  font-size: clamp(1rem, 2vw, 1.14rem);
  color: rgba(243, 250, 245, 0.94);
  max-width: 58ch;
  margin-bottom: 0;
}

.grid {
  display: grid;
  gap: 1.4rem;
}

.card,
.image-card,
.slider,
.availability {
  background: var(--surface);
  border: 1px solid rgba(200, 220, 208, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.card {
  padding: clamp(1.1rem, 2.4vw, 1.8rem);
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #bfdac7;
}

.card-feature {
  overflow: hidden;
  padding: 0;
}

.card-feature-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card-feature-media {
  overflow: hidden;
}

.card-feature-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition:
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card-body {
  padding: clamp(1rem, 2.2vw, 1.5rem);
}

.card-feature-link .card-body {
  transition: transform var(--ease);
}

.home-apartment-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  --card-photo-shift-x: 0px;
  --card-photo-shift-y: 0px;
  --card-photo-scale: 1.02;
  --card-photo-transition-duration: 4200ms;
  --card-photo-transition-ease: cubic-bezier(0.16, 0.78, 0.18, 1);
}

.home-apartment-card .card-feature-media {
  position: relative;
}

.home-apartment-card .card-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      110% 110% at 82% 14%,
      rgba(223, 242, 230, 0.18),
      rgba(223, 242, 230, 0) 55%
    ),
    linear-gradient(
      180deg,
      rgba(38, 94, 65, 0.04) 0%,
      rgba(73, 146, 102, 0.1) 100%
    );
  opacity: 0.9;
  pointer-events: none;
  transition: opacity var(--ease);
}

.home-apartment-card .card-feature-media img {
  transform:
    translate3d(var(--card-photo-shift-x), var(--card-photo-shift-y), 0)
    scale(var(--card-photo-scale));
  transform-origin: center center;
  will-change: transform;
  transition:
    transform var(--card-photo-transition-duration)
      var(--card-photo-transition-ease),
    filter 620ms cubic-bezier(0.2, 0.78, 0.22, 1);
}

.home-apartment-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.2rem, 2.8vw, 1.85rem) clamp(1.15rem, 2.5vw, 1.6rem) clamp(1.45rem, 3vw, 2rem);
}

.home-apartment-card-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.8rem;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f8f57 0%, #69b286 100%);
  color: #f7fbf8;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 18px rgba(42, 111, 76, 0.18);
  text-transform: uppercase;
}

.home-apartment-card-title {
  margin-bottom: 0.92rem;
  color: #355b49;
  font-size: clamp(1.24rem, 2.3vw, 1.72rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.home-apartment-card-meta {
  margin-bottom: 1.05rem;
  color: #5b7264;
}

.home-apartment-card .card-feature-button {
  margin-top: auto;
  border-color: rgba(121, 133, 129, 0.22);
  color: #31423a;
  background: linear-gradient(180deg, rgba(250, 251, 250, 0.98), rgba(232, 237, 234, 0.96));
  box-shadow: 0 10px 22px rgba(34, 45, 40, 0.1);
  filter: none;
}

.card-feature-link .card-feature-button {
  width: fit-content;
  min-height: 2.75rem;
  margin-top: 0.85rem;
  padding: 0.68rem 1.04rem;
  pointer-events: none;
}

.card-feature-link:hover .card-feature-media img,
.card-feature-link:focus-visible .card-feature-media img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.home-apartment-card:hover,
.home-apartment-card:focus-visible,
.home-apartment-card.is-pointer-active {
  --card-photo-scale: 1.045;
  --card-photo-transition-duration: 920ms;
  --card-photo-transition-ease: cubic-bezier(0.2, 0.78, 0.22, 1);
}

.home-apartment-card:hover .card-feature-media img,
.home-apartment-card:focus-visible .card-feature-media img,
.home-apartment-card.is-pointer-active .card-feature-media img {
  transform:
    translate3d(var(--card-photo-shift-x), var(--card-photo-shift-y), 0)
    scale(var(--card-photo-scale));
  filter: saturate(1.05);
}

.home-apartment-card:hover .card-feature-media::after,
.home-apartment-card:focus-visible .card-feature-media::after,
.home-apartment-card.is-pointer-active .card-feature-media::after {
  opacity: 1;
}

.card-feature-link:hover .card-body,
.card-feature-link:focus-visible .card-body {
  transform: translateY(-2px);
}

.card-feature-link:hover .card-feature-button,
.card-feature-link:focus-visible .card-feature-button {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(37, 125, 72, 0.28);
  filter: saturate(1.03);
}

.home-apartment-card:hover .card-feature-button,
.home-apartment-card:focus-visible .card-feature-button,
.home-apartment-card.is-pointer-active .card-feature-button {
  color: #25352e;
  background: linear-gradient(180deg, rgba(252, 253, 252, 1), rgba(237, 241, 238, 0.98));
  border-color: rgba(117, 130, 124, 0.28);
  box-shadow: 0 16px 28px rgba(34, 45, 40, 0.14);
  filter: none;
}

.card-feature-link:hover .card-feature-button::after,
.card-feature-link:focus-visible .card-feature-button::after {
  transform: translateX(2px);
  opacity: 1;
}

.card-feature-link:focus-visible {
  outline: 2px solid rgba(47, 143, 87, 0.55);
  outline-offset: 3px;
}

.page-head {
  padding-top: clamp(4rem, 9vw, 7rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.page-head .container {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.92),
    rgba(242, 248, 244, 0.72)
  );
  border: 1px solid #d6e5db;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.calendar-section {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.section[id] {
  scroll-margin-top: var(--section-anchor-offset, 6.2rem);
}

#wohnungen {
  scroll-margin-top: clamp(4.6rem, 9vw, 7.2rem);
  padding-bottom: clamp(1.3rem, 2.4vw, 2.4rem);
}

.apartment-section[id] {
  scroll-margin-top: var(--apartment-anchor-offset, 11.2rem);
}

.apartment-section#fotos,
.apartment-section#infos {
  scroll-margin-top: calc(
    var(--apartment-anchor-offset, 11.2rem) + clamp(2.2rem, 4vw, 3.2rem) + 32px
  );
}

.request-card {
  position: relative;
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.45rem, 3.3vw, 2.7rem) clamp(1.2rem, 3.5vw, 2.8rem);
  border-color: rgba(153, 196, 173, 0.56);
  background:
    radial-gradient(
      125% 145% at 100% 0%,
      rgba(223, 242, 230, 0.52),
      rgba(223, 242, 230, 0) 58%
    ),
    linear-gradient(
      152deg,
      rgba(255, 255, 255, 0.98),
      rgba(242, 249, 245, 0.92)
    );
  box-shadow: 0 18px 34px rgba(31, 71, 49, 0.11);
  overflow: hidden;
}

.apartment-section#anfrage .container.narrow {
  width: min(980px, calc(100% - (var(--gutter) * 2)));
}

.apartment-booking-flow-shell {
  margin-bottom: clamp(1.15rem, 2.8vw, 1.8rem);
}

.request-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.34rem;
  background: linear-gradient(180deg, #2f8f57, #7cbf97);
}

.request-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  margin: 0;
  width: fit-content;
  padding: 0.34rem 0.75rem;
  border-radius: 999px;
  background: rgba(47, 143, 87, 0.1);
  color: #1e6940;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.request-kicker::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f8f57, #7cbf97);
}

.request-lead {
  margin: 0;
  max-width: 70ch;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.6;
  color: #395746;
}

.request-card-compact {
  gap: 0.95rem;
  padding: clamp(1.1rem, 2.6vw, 1.65rem) clamp(1rem, 2.8vw, 1.5rem);
}

.request-card-compact h2,
.request-card-compact h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
}

.apartment-info-section .section-intro {
  max-width: 72ch;
  margin: 0 0 1.05rem;
  color: #456457;
}

.apartment-info-grid,
.apartment-equip-grid {
  gap: 1rem;
}

.apartment-info-card,
.apartment-equip-card {
  display: grid;
  gap: 0.6rem;
}

.apartment-info-card h3,
.apartment-equip-card h3 {
  margin-bottom: 0.2rem;
}

.apartment-info-card .facts-list,
.apartment-equip-card .facts-list {
  margin-top: 0;
}

.apartment-note-card p {
  margin: 0;
  color: #395746;
}

.apartment-note-card p + p {
  margin-top: 0.55rem;
}

.apartment-note-card {
  grid-column: 1 / -1;
}

.request-card .button {
  width: fit-content;
}

.request-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: request-step;
  display: grid;
  gap: 0.75rem;
}

.request-steps li {
  position: relative;
  margin: 0;
  padding: 0.92rem 1rem 0.92rem 2.9rem;
  border: 1px solid rgba(183, 209, 193, 0.58);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  line-height: 1.45;
}

.request-steps li::before {
  counter-increment: request-step;
  content: counter(request-step);
  position: absolute;
  left: 0.85rem;
  top: 0.9rem;
  width: 1.42rem;
  height: 1.42rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(140deg, #2f8f57, #66b286);
  box-shadow: 0 6px 12px rgba(33, 75, 52, 0.2);
}

.request-actions {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
}

.request-actions .button {
  min-height: 2.9rem;
  padding: 0.72rem 1.16rem;
}

.request-note {
  margin: 0;
  color: #466355;
  font-size: 0.9rem;
}

.request-note-inline {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(171, 202, 185, 0.58);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
}

.apartment-inquiry-stack {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.summer-request-card {
  position: relative;
  margin-top: clamp(1rem, 2.4vw, 1.6rem);
  border: 1px solid rgba(156, 196, 174, 0.7);
  border-radius: 16px;
  background:
    radial-gradient(
      130% 150% at 100% 0%,
      rgba(226, 243, 233, 0.72),
      rgba(226, 243, 233, 0) 62%
    ),
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.98),
      rgba(241, 249, 244, 0.96)
    );
  box-shadow: 0 12px 26px rgba(31, 71, 49, 0.08);
  overflow: hidden;
}

.summer-request-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.34rem;
  background: linear-gradient(180deg, #2f8f57, #7cbf97);
}

.summer-request-kicker {
  margin: 0;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(47, 143, 87, 0.12);
  color: #1f6640;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summer-request-summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  display: grid;
  gap: 0.5rem;
  padding: clamp(0.95rem, 2.3vw, 1.25rem) clamp(1rem, 2.8vw, 1.7rem);
  padding-right: clamp(3.4rem, 7vw, 4.2rem);
}

.summer-request-summary::-webkit-details-marker {
  display: none;
}

.summer-request-summary:hover .summer-request-title,
.summer-request-summary:focus-visible .summer-request-title {
  color: #154f31;
}

.summer-request-summary::after {
  content: "+";
  position: absolute;
  right: clamp(1rem, 2.8vw, 1.45rem);
  top: 50%;
  transform: translateY(-50%);
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(47, 143, 87, 0.12);
  color: #1f6640;
  font-size: 1.08rem;
  line-height: 1;
  transition:
    background var(--ease),
    transform var(--ease);
}

.summer-request-card[open] .summer-request-summary::after {
  content: "−";
  background: rgba(47, 143, 87, 0.18);
}

.summer-request-title {
  display: block;
  font-size: clamp(1.08rem, 2.2vw, 1.34rem);
  font-weight: 800;
  color: #183527;
  line-height: 1.25;
}

.summer-request-body {
  display: grid;
  gap: 0.65rem;
  padding: 0 clamp(1rem, 2.8vw, 1.7rem) clamp(1rem, 2.6vw, 1.35rem);
}

.summer-request-body p {
  margin: 0;
  line-height: 1.55;
  color: #3f5b4d;
}

.summer-request-body a {
  color: #1f6d42;
  font-weight: 700;
  text-underline-offset: 0.14em;
  text-decoration-thickness: 0.09em;
}

.summer-request-body a:hover,
.summer-request-body a:focus-visible {
  color: #184f30;
}

.facts-list {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
}

.facts-list li {
  position: relative;
  padding: 0.42rem 0 0.42rem 1.35rem;
  border-bottom: 1px dashed rgba(127, 160, 141, 0.46);
}

.facts-list li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.98rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f8f57, #7cbf97);
}

.promo-offer {
  position: relative;
  overflow: hidden;
  padding: clamp(1.15rem, 3vw, 1.7rem);
  border: 1px solid rgba(121, 173, 140, 0.34);
  border-radius: var(--radius);
  background:
    radial-gradient(
      120% 120% at 100% 0%,
      rgba(223, 242, 230, 0.95),
      rgba(223, 242, 230, 0) 58%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(240, 249, 244, 0.96)
    );
  box-shadow: 0 18px 36px rgba(33, 75, 52, 0.1);
}

.apartment-section .promo-offer {
  margin-top: clamp(1.4rem, 3.2vw, 2rem);
}

.promo-offer::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.38rem;
  background: linear-gradient(180deg, #2f8f57, #7cbf97);
}

.promo-offer h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.35rem, 3vw, 2.05rem);
}

.promo-offer p:last-child {
  margin-bottom: 0;
}

.promo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(47, 143, 87, 0.1);
  color: #1e6940;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-kicker::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f8f57, #7cbf97);
}

.home-closing {
  position: relative;
  max-width: min(74ch, 100%);
  margin: 0 auto;
  padding: clamp(1.35rem, 3.5vw, 2.25rem) clamp(1.15rem, 3.2vw, 2.5rem);
  border: 1px solid rgba(156, 196, 174, 0.58);
  border-radius: clamp(18px, 2.2vw, 26px);
  background:
    radial-gradient(
      115% 130% at 10% 0%,
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0) 58%
    ),
    radial-gradient(
      120% 140% at 95% 100%,
      rgba(223, 242, 230, 0.55),
      rgba(223, 242, 230, 0) 62%
    ),
    linear-gradient(
      152deg,
      rgba(255, 255, 255, 0.96),
      rgba(240, 249, 244, 0.86)
    );
  text-align: center;
  box-shadow: 0 20px 40px rgba(33, 75, 52, 0.1);
  overflow: hidden;
  isolation: isolate;
}

.home-closing-section {
  padding-bottom: calc(clamp(2.6rem, 4.8vw, 4.8rem) * 2);
}

.home-closing::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 0.95rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(124, 191, 151, 0),
    rgba(124, 191, 151, 0.72),
    rgba(124, 191, 151, 0)
  );
  pointer-events: none;
}

.home-closing::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -42px;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(124, 191, 151, 0.24),
    rgba(124, 191, 151, 0)
  );
  pointer-events: none;
}

.home-closing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  margin-bottom: 0.75rem;
  padding: 0.36rem 0.8rem;
  border-radius: 999px;
  background: rgba(47, 143, 87, 0.1);
  color: #1e6940;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-closing-kicker::before {
  content: "";
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f8f57, #7cbf97);
}

.home-closing-lead {
  margin: 0;
  font-family: "Cormorant Garamond", "Fraunces", "Palatino Linotype", serif;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  line-height: 1.22;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.01em;
  color: #1a4936;
  text-wrap: balance;
}

.home-closing-note {
  margin: 0.65rem 0 0;
  font-size: clamp(0.97rem, 2vw, 1.12rem);
  font-weight: 600;
  color: #315744;
}

.home-closing-text {
  margin: 0.72rem auto 0;
  max-width: 58ch;
  color: #456457;
}

.home-story-layout {
  display: grid;
  gap: 0.45rem;
  padding: 0 clamp(16px, 1.8vw, 20px);
}

.home-story-copy {
  max-width: 94ch;
}

.home-story-copy p {
  margin: 0;
  color: #355547;
  line-height: 1.62;
}

.home-story-section {
  padding-bottom: clamp(1.3rem, 2.4vw, 2.4rem);
}

#wohnungen + .home-story-section {
  padding-top: clamp(1.3rem, 2.4vw, 2.4rem);
}

.home-gallery-section {
  padding-top: clamp(1.3rem, 2.4vw, 2.4rem);
  padding-bottom: clamp(1.3rem, 2.4vw, 2.4rem);
}

.home-gallery-section + .home-story-section {
  padding-top: clamp(1.3rem, 2.4vw, 2.4rem);
}

.promo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.promo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(122, 170, 142, 0.28);
  background: rgba(255, 255, 255, 0.72);
  color: #365645;
  font-size: 0.82rem;
  font-weight: 700;
}

.promo-copy-chip {
  position: relative;
  cursor: pointer;
  transition:
    transform var(--ease),
    border-color var(--ease),
    background var(--ease),
    box-shadow var(--ease);
}

.promo-copy-chip::after {
  content: attr(data-copy-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.45rem);
  transform: translateX(-50%) translateY(4px);
  padding: 0.34rem 0.55rem;
  border-radius: 8px;
  background: rgba(24, 44, 33, 0.92);
  color: #f4faf6;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--ease),
    transform var(--ease);
}

.promo-copy-chip:hover,
.promo-copy-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(47, 143, 87, 0.42);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 18px rgba(35, 83, 56, 0.08);
}

.promo-copy-chip:hover::after,
.promo-copy-chip:focus-visible::after,
.promo-copy-chip.is-copied::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.promo-copy-chip.is-copied {
  border-color: rgba(47, 143, 87, 0.54);
  background: rgba(223, 242, 230, 0.72);
}

.slider {
  position: relative;
  padding: 0.88rem 0.8rem 0.9rem;
  box-shadow: var(--shadow-md);
  --slider-btn-y-offset: clamp(1.05rem, 2.3vw, 1.55rem);
}

.slider-viewport {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
}

.slider.has-multiple-slides .slider-viewport {
  cursor: grab;
}

.slider.has-multiple-slides .slider-viewport.is-dragging {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  transition: transform 360ms cubic-bezier(0.22, 0.74, 0.19, 1);
  touch-action: pan-y;
}

.slide {
  --slide-pad: 0.35rem;
  position: relative;
  min-width: 100%;
  margin: 0;
  padding: 0 var(--slide-pad);
}

.slide img {
  width: 100%;
  aspect-ratio: 16 / 10.2;
  object-fit: cover;
  border-radius: var(--radius-sm);
  user-select: none;
  -webkit-user-drag: none;
}

.slide figcaption {
  position: absolute;
  left: calc(var(--slide-pad) + 0.55rem);
  right: auto;
  bottom: 0.55rem;
  margin: 0;
  display: inline-flex;
  align-items: flex-start;
  gap: 0;
  inline-size: fit-content;
  max-inline-size: 35%;
  padding: 0.62rem 0.9rem 0.64rem;
  border-radius: 12px;
  border: 1px solid rgba(198, 218, 206, 0.84);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.94),
    rgba(240, 249, 244, 0.9)
  );
  color: #1a4332;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.003em;
  white-space: normal;
  overflow-wrap: anywhere;
  box-shadow: 0 12px 22px rgba(21, 46, 32, 0.18);
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.slide figcaption::before {
  content: none;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - var(--slider-btn-y-offset)));
  width: 52px;
  height: 52px;
  border: 1px solid #cfe0d5;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #1f5f3c;
  font-size: 1.42rem;
  box-shadow: 0 10px 18px rgba(33, 75, 52, 0.2);
  cursor: pointer;
  z-index: 4;
  transition:
    transform var(--ease),
    background var(--ease),
    border-color var(--ease);
}

.slider-btn:hover {
  transform: translateY(calc(-50% - var(--slider-btn-y-offset))) scale(1.04);
  background: #ffffff;
  border-color: #9bc1ab;
}

.slider-btn.prev {
  left: 0.2rem;
}

.slider-btn.next {
  right: 0.2rem;
}

.slider-hitzone {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10%;
  min-width: 44px;
  max-width: 96px;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

.slider-hitzone.prev {
  left: 0;
}

.slider-hitzone.next {
  right: 0;
}

.slider-dots {
  --thumb-gap: 0.45rem;
  --visible-thumbs: 3;
  display: flex;
  gap: var(--thumb-gap);
  margin: 0.9rem 0 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  cursor: grab;
  padding-bottom: 0.12rem;
}

.slider-dots.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.slider-dots::-webkit-scrollbar {
  height: 7px;
}

.slider-dots::-webkit-scrollbar-thumb {
  background: rgba(132, 162, 145, 0.55);
  border-radius: 999px;
}

.slider-dots button {
  flex: 0 0
    calc(
      (100% - (var(--thumb-gap) * (var(--visible-thumbs) - 1))) /
        var(--visible-thumbs)
    );
  min-width: 0;
  padding: 0;
  border: 1px solid rgba(168, 192, 178, 0.82);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  cursor: pointer;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    transform var(--ease),
    border-color var(--ease),
    box-shadow var(--ease),
    opacity var(--ease);
  opacity: 0.72;
  scroll-snap-align: center;
}

.slider-dots button.active {
  opacity: 1;
  transform: translateY(-1px);
  border-color: rgba(47, 143, 87, 0.58);
  box-shadow: 0 10px 18px rgba(33, 75, 52, 0.12);
}

.slider-dots button:hover,
.slider-dots button:focus-visible {
  opacity: 1;
  border-color: rgba(47, 143, 87, 0.42);
}

.slider-dots button img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

@media (min-width: 560px) {
  .slider-dots {
    --visible-thumbs: 4;
  }
}

@media (min-width: 820px) {
  .slider-dots {
    --visible-thumbs: 6;
  }

  .slider[data-apartment="haus"] .slider-dots {
    --visible-thumbs: 5;
  }
}

@media (min-width: 1040px) {
  .slider-dots {
    --visible-thumbs: 8;
  }

  .slider[data-apartment="home"] .slider-dots {
    --visible-thumbs: 7;
  }

  .slider[data-apartment="haus"] .slider-dots {
    --visible-thumbs: 5;
  }
}

@media (min-width: 1320px) {
  .slider-dots {
    --visible-thumbs: 9;
  }

  .slider[data-apartment="home"] .slider-dots {
    --visible-thumbs: 7;
  }

  .slider[data-apartment="haus"] .slider-dots {
    --visible-thumbs: 5;
  }
}

.api-hint {
  font-size: 0.95rem;
  color: var(--muted);
}

.api-hint a {
  font-weight: 700;
}

.availability {
  padding: 1rem;
  box-shadow: var(--shadow-md);
}

.calendar-header {
  margin: 0 0 0.85rem;
}

.calendar-title {
  margin: 0;
  font-family: "Fraunces", "Palatino Linotype", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #163728;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-size: 0.9rem;
}

.calendar-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin: 0 0 1rem;
}

.calendar-refresh {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #60766a;
  font-size: 0.82rem;
  white-space: nowrap;
}

.calendar-refresh[hidden],
.calendar-status[hidden] {
  display: none !important;
}

.calendar-status {
  color: #60766a;
  font-size: 0.82rem;
  white-space: nowrap;
}

.calendar-refresh-spinner {
  width: 0.8rem;
  height: 0.8rem;
  border: 2px solid rgba(111, 143, 124, 0.22);
  border-top-color: rgba(47, 143, 87, 0.82);
  border-radius: 999px;
  animation: calendar-spin 0.8s linear infinite;
}

.calendar-notes {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  margin-top: 0.95rem;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.calendar-note {
  margin: 0;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  font-size: 0.84rem;
  line-height: 1.35;
  color: #60766a;
  white-space: nowrap;
}

.calendar-note + .calendar-note::before {
  content: "•";
  margin: 0 0.5rem;
  color: #8ba396;
}

.calendar-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
}

.calendar-range {
  margin: 0;
  text-align: center;
  font-family: "Fraunces", "Palatino Linotype", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #163728;
  line-height: 1.12;
}

.calendar-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1.5px solid #bdd4c8;
  border-radius: 999px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98),
    rgba(241, 248, 244, 0.96)
  );
  color: #163728;
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 18px rgba(33, 75, 52, 0.14);
  cursor: pointer;
  transition:
    transform var(--ease),
    background var(--ease),
    border-color var(--ease),
    opacity var(--ease);
}

.calendar-nav:hover:not(:disabled) {
  transform: translateY(-1px);
  background: #ffffff;
  border-color: #7fae96;
  box-shadow: 0 12px 20px rgba(33, 75, 52, 0.18);
}

.calendar-nav:disabled {
  opacity: 0.42;
  color: #94a69c;
  border-color: #d6e1da;
  cursor: default;
  box-shadow: none;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
}

.legend-text {
  font-weight: 400;
  color: #466252;
}

.legend-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  box-sizing: border-box;
}

.legend-dot.past {
  background: #d6ddd9;
}

.legend-dot.available {
  background: var(--available);
}

.legend-dot.unavailable {
  background: var(--unavailable);
}

.legend-dot.unreleased {
  background: #c9d3cd;
}

.legend-dot.promo {
  background: #ffffff;
  border: 2px solid #2f8f57;
  box-shadow: 0 0 0 2px rgba(47, 143, 87, 0.16);
}

.legend-dot.unknown {
  background: var(--unknown);
}

@keyframes calendar-spin {
  to {
    transform: rotate(360deg);
  }
}

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

.month-card {
  border: 1px solid #d9e8de;
  border-radius: var(--radius-sm);
  padding: 0.8rem;
  background: #fbfdfc;
}

.calendar-grid > .month-card:only-child {
  grid-column: 1 / -1;
}

.month-card h3 {
  font-size: 1.04rem;
  margin-bottom: 0.82rem;
}

.weekdays,
.days-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.25rem;
}

.weekdays span {
  text-align: center;
  color: #698171;
  font-size: 0.75rem;
}

.day {
  position: relative;
  min-height: 54px;
  width: 100%;
  border: 1px solid #d9e6de;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.2rem;
  padding: 0.42rem;
  background: #ffffff;
  color: #2a4736;
  font-size: 0.8rem;
  text-align: left;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  cursor: default;
  opacity: 1;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease),
    background var(--ease);
}

.day:disabled {
  cursor: default;
  opacity: 1;
  pointer-events: none;
}

.day.is-actionable {
  cursor: pointer;
}

.day.is-actionable:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(30, 71, 48, 0.12);
}

@media (hover: hover) and (pointer: fine) {
  .day.is-actionable:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(30, 71, 48, 0.12);
  }
}

.day:focus-visible {
  outline: 0;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.92),
    0 0 0 5px rgba(47, 143, 87, 0.34);
}

.day-num {
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.day-price {
  margin-top: auto;
  padding-top: 0.42rem;
  font-size: 0.68rem;
  line-height: 1.2;
  color: #60766a;
  font-weight: 600;
}

.day.unavailable .day-price,
.day.unknown .day-price,
.day.past .day-price,
.day.unreleased .day-price {
  color: #5f7467;
}

.day.is-promo {
  box-shadow: inset 0 0 0 1.5px rgba(30, 113, 59, 0.42);
}

.day.available.is-promo {
  border-color: rgba(30, 113, 59, 0.72);
}

.day-price-promo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08rem;
}

.day-price-original {
  font-size: 0.88em;
  line-height: 1.1;
  color: #7c8f84;
  text-decoration: line-through;
  text-decoration-thickness: 0.08em;
  text-decoration-color: currentColor;
}

.day-price-discount {
  font-size: 1em;
  line-height: 1.1;
  color: #1e713b;
  font-weight: 800;
}

.day.available {
  background: rgba(47, 143, 87, 0.14);
  border-color: rgba(47, 143, 87, 0.44);
}

.day.available.is-unselectable-available {
  background: rgba(47, 143, 87, 0.14);
  border-color: rgba(47, 143, 87, 0.44);
  color: #2a4736;
  box-shadow: none;
}

.day.available.is-unselectable-available .day-price,
.day.available.is-unselectable-available .day-price-discount,
.day.available.is-unselectable-available .day-price-original {
  color: #60766a;
}

.day.is-arrival-option {
  box-shadow: inset 0 0 0 1px rgba(31, 95, 60, 0.18);
}

.day.is-arrival-option .day-num::after {
  content: "";
  display: inline-flex;
  width: 0.38rem;
  height: 0.38rem;
  margin-inline-start: 0.32rem;
  border-radius: 999px;
  background: rgba(31, 95, 60, 0.72);
  vertical-align: middle;
}

.day.is-preview-range {
  background: rgba(47, 143, 87, 0.1);
  border-color: rgba(47, 143, 87, 0.26);
  box-shadow: inset 0 0 0 1px rgba(31, 95, 60, 0.08);
}

.day.is-min-stay-core {
  background: linear-gradient(
    145deg,
    rgba(47, 143, 87, 0.44),
    rgba(74, 160, 106, 0.34)
  );
  border-color: rgba(24, 76, 46, 0.72);
  box-shadow: inset 0 0 0 1.5px rgba(24, 76, 46, 0.22);
}

.day.is-min-stay-core .day-num,
.day.is-min-stay-core .day-price,
.day.is-min-stay-core .day-price-discount {
  color: #163b25;
}

.day.is-departure-option {
  border-style: dashed;
  box-shadow: inset 0 0 0 1.5px rgba(24, 76, 46, 0.28);
}

.day.is-departure-option .day-num::after {
  content: "";
  display: inline-flex;
  width: 0.48rem;
  height: 0.48rem;
  margin-inline-start: 0.34rem;
  border-radius: 999px;
  border: 2px solid rgba(24, 76, 46, 0.78);
  background: rgba(255, 255, 255, 0.92);
  vertical-align: middle;
}

.day.is-in-range .day-num,
.day.is-in-range .day-price,
.day.is-in-range .day-price-discount,
.day.is-in-range .day-price-original,
.day.is-hover-preview-range .day-num,
.day.is-hover-preview-range .day-price,
.day.is-hover-preview-range .day-price-discount,
.day.is-hover-preview-range .day-price-original,
.day.is-hover-preview-departure .day-num,
.day.is-hover-preview-departure .day-price,
.day.is-hover-preview-departure .day-price-discount,
.day.is-hover-preview-departure .day-price-original,
.day.is-selected .day-num,
.day.is-selected .day-price,
.day.is-selected .day-price-discount,
.day.is-selected .day-price-original {
  color: #ffffff;
}

.day.is-in-range .day-price-original,
.day.is-hover-preview-range .day-price-original,
.day.is-hover-preview-departure .day-price-original,
.day.is-selected .day-price-original {
  opacity: 0.72;
}

.day.unavailable {
  background: rgba(199, 95, 79, 0.14);
  border-color: rgba(199, 95, 79, 0.44);
}

.day.past {
  background: transparent;
  border-color: rgba(210, 220, 214, 0.72);
  color: #98a7a0;
}

.day.past .day-num {
  color: #98a7a0;
}

.day.past .day-price {
  color: #a3b0aa;
}

.day.unreleased {
  background: rgba(225, 231, 227, 0.72);
  border-color: rgba(158, 173, 163, 0.42);
  color: #6b7e73;
}

.day.unknown {
  background: rgba(158, 173, 163, 0.14);
  border-color: rgba(158, 173, 163, 0.38);
}

.day.is-split {
  background: linear-gradient(
    135deg,
    var(--split-from) 0 49.25%,
    var(--split-to) 50.75% 100%
  );
  border-color: var(--split-border);
}

.day.is-in-range,
.day.is-in-range.available,
.day.is-in-range.unavailable,
.day.is-in-range.past,
.day.is-in-range.unreleased,
.day.is-in-range.unknown,
.day.is-in-range.is-split,
.day.is-hover-preview-range,
.day.is-hover-preview-range.available,
.day.is-hover-preview-range.unavailable,
.day.is-hover-preview-range.past,
.day.is-hover-preview-range.unreleased,
.day.is-hover-preview-range.unknown,
.day.is-hover-preview-range.is-split,
.day.is-hover-preview-departure,
.day.is-hover-preview-departure.available,
.day.is-hover-preview-departure.unavailable,
.day.is-hover-preview-departure.past,
.day.is-hover-preview-departure.unreleased,
.day.is-hover-preview-departure.unknown,
.day.is-hover-preview-departure.is-split,
.day.is-selected,
.day.is-selected.available,
.day.is-selected.unavailable,
.day.is-selected.past,
.day.is-selected.unreleased,
.day.is-selected.unknown,
.day.is-selected.is-split {
  background: linear-gradient(145deg, #1f6d42, #3ca96c);
  border-color: rgba(18, 74, 44, 0.84);
  color: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 14px 24px rgba(21, 68, 42, 0.2);
}

.day.is-hover-preview-departure {
  border-style: solid;
}

.day.is-hover-preview-departure .day-num::after {
  content: none;
}

.day.empty {
  border: 0;
  background: transparent;
}

.calendar-selection-ui {
  margin-top: 1rem;
}

.calendar-selection-hint {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem 0.9rem;
  padding: 0.88rem 0.95rem;
  border: 1px solid rgba(164, 197, 177, 0.62);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 249, 245, 0.95));
  box-shadow: 0 12px 22px rgba(31, 71, 49, 0.08);
}

.calendar-selection-hint-text {
  margin: 0;
  color: #3f5b4d;
  line-height: 1.5;
}

.calendar-selection-overlay {
  position: sticky;
  bottom: 0.9rem;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 1rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(122, 173, 142, 0.46);
  border-radius: 18px;
  background:
    radial-gradient(
      130% 140% at 100% 0%,
      rgba(223, 242, 230, 0.9),
      rgba(223, 242, 230, 0) 58%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.96),
      rgba(239, 248, 242, 0.94)
    );
  box-shadow: 0 18px 30px rgba(21, 68, 42, 0.14);
  backdrop-filter: blur(10px);
}

.calendar-selection-copy {
  display: grid;
  gap: 0.2rem;
}

.calendar-selection-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #557267;
}

.calendar-selection-overlay h3 {
  margin: 0;
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
  color: #173728;
}

.calendar-selection-meta {
  margin: 0;
  color: #436153;
  line-height: 1.45;
}

.calendar-selection-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
}

.calendar-selection-cta {
  min-height: 2.9rem;
}

.calendar-selection-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.68rem 1rem;
  border: 1px solid rgba(122, 173, 142, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #214d35;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform var(--ease),
    background var(--ease),
    border-color var(--ease),
    box-shadow var(--ease);
}

.calendar-selection-reset:hover,
.calendar-selection-reset:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(47, 143, 87, 0.62);
  box-shadow: 0 10px 18px rgba(31, 71, 49, 0.08);
}

.image-card {
  padding: 0.5rem;
}

.image-card img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.floorplan-layout .section-intro {
  margin-bottom: 1.15rem;
}

.floorplan-card {
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 3.1vw, 2.25rem) clamp(0.85rem, 2.3vw, 1.4rem);
}

.floorplan-card:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
}

.floorplan-card img {
  width: 100%;
  max-width: 780px;
  height: auto;
  object-fit: contain;
  aspect-ratio: auto;
  border-radius: var(--radius-sm);
  background: rgba(246, 250, 248, 0.85);
}

.contact-card {
  border-left: 4px solid rgba(47, 143, 87, 0.56);
  padding-left: 0.92rem;
  font-style: normal;
  margin-bottom: 1rem;
}

.contact-layout {
  display: grid;
  gap: clamp(1.25rem, 2.6vw, 1.9rem);
  padding: 0 clamp(16px, 1.8vw, 20px);
}

.contact-intro {
  margin: 0;
  max-width: 72ch;
  color: #456457;
}

.contact-grid {
  display: grid;
  gap: 1.05rem;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
}

.contact-tile {
  display: grid;
  align-content: start;
  gap: 0.46rem;
  background: var(--surface);
  border: 1px solid rgba(200, 220, 208, 0.78);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 1rem 1.05rem;
}

.contact-address-tile {
  position: relative;
  overflow: hidden;
  border-color: rgba(167, 201, 181, 0.82);
  background:
    radial-gradient(
      125% 140% at 100% 0%,
      rgba(223, 242, 230, 0.62),
      rgba(223, 242, 230, 0) 62%
    ),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(240, 249, 244, 0.9));
}

.contact-address-tile::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.32rem;
  background: linear-gradient(180deg, #2f8f57, #7cbf97);
}

.contact-tile-kicker {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5b7466;
  font-weight: 800;
}

.contact-tile h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.1rem, 2.6vw, 1.35rem);
}

.contact-tile p {
  margin: 0;
}

.contact-name {
  font-weight: 800;
  color: #183a2b;
}

.contact-note {
  color: #587064;
}

.contact-address {
  font-style: normal;
  color: #264437;
  line-height: 1.55;
}

.travel-layout {
  display: grid;
  gap: clamp(1.7rem, 3.4vw, 2.7rem);
  padding: 0 clamp(16px, 1.8vw, 20px);
}

.travel-intro-block {
  display: grid;
  gap: 0.55rem;
}

.travel-intro-block h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 3.3vw, 2.2rem);
}

.travel-intro {
  margin: 0;
  max-width: 90ch;
  color: #456457;
  line-height: 1.58;
}

.travel-quickfacts {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: minmax(0, 1fr);
}

.travel-fact {
  display: grid;
  gap: 0.28rem;
  padding: 0.82rem 0.9rem 0.86rem;
  border-radius: 14px;
  border: 1px solid rgba(176, 204, 186, 0.65);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98),
    rgba(238, 248, 241, 0.86)
  );
  box-shadow: 0 10px 18px rgba(33, 75, 52, 0.08);
}

.travel-fact-kicker {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #5c7467;
  font-weight: 800;
}

.travel-fact-value {
  margin: 0;
  color: #1d4734;
  font-size: 0.94rem;
  font-weight: 720;
  line-height: 1.35;
}

.travel-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  margin: 0 auto;
}

.travel-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.52rem;
  border: 1px solid rgba(178, 207, 190, 0.74);
  border-radius: var(--radius-sm);
  background:
    radial-gradient(
      140% 130% at 0% 0%,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0) 58%
    ),
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.98),
      rgba(239, 248, 242, 0.86)
    );
  box-shadow: 0 14px 24px rgba(33, 75, 52, 0.1);
  padding: 1.05rem 1.08rem;
}

.travel-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.32rem;
  background: linear-gradient(180deg, #2f8f57, #7cbf97);
}

.travel-kicker {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5b7466;
  font-weight: 800;
}

.travel-card h2,
.travel-map-card h2,
.travel-note-card h3 {
  margin: 0;
}

.travel-card h2 {
  font-size: clamp(1.1rem, 2.6vw, 1.35rem);
}

.travel-list {
  list-style: none;
  margin: 0.18rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.travel-list li {
  position: relative;
  padding-left: 1.18rem;
  color: #2f4a3d;
  line-height: 1.45;
}

.travel-list li::before {
  content: "";
  position: absolute;
  left: 0.18rem;
  top: 0.62rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f8f57, #7cbf97);
}

.travel-map-wrap {
  display: grid;
  gap: clamp(1.3rem, 2.6vw, 1.95rem);
  padding: 0 clamp(16px, 1.8vw, 20px);
}

.travel-note-stack {
  display: grid;
  gap: 1.15rem;
}

.travel-map-card,
.travel-note-card {
  background: var(--surface);
  border: 1px solid rgba(200, 220, 208, 0.78);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.travel-map-card {
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
}

.travel-map-card p {
  margin: 0;
  color: #4c6659;
}

.travel-map-frame {
  width: 100%;
  border: 1px solid #d7e5dc;
  border-radius: 12px;
  min-height: 320px;
  background: #eef5f1;
}

.travel-map-links {
  display: grid;
  gap: 0.35rem;
}

.travel-map-links a {
  font-weight: 700;
}

.inquiry-checkout-section {
  padding-top: clamp(1.8rem, 4vw, 3rem);
}

.inquiry-page-shell {
  display: grid;
  gap: clamp(1rem, 2.4vw, 1.6rem);
}

.inquiry-stage-header {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
}

.inquiry-stage-header > div {
  display: grid;
  gap: 0.1rem;
}

.inquiry-stage-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5b7466;
  font-weight: 800;
}

.inquiry-stage-header h2 {
  margin: 0;
}

.inquiry-stage-note {
  max-width: min(64ch, 100%);
  margin: 0;
  color: #4c6659;
  font-size: clamp(0.98rem, 1.35vw, 1.04rem);
  line-height: 1.45;
}

.inquiry-form-stage-header {
  margin-top: clamp(1rem, 3vw, 1.9rem);
}

.inquiry-calendar-entry {
  display: grid;
  gap: clamp(1rem, 2.4vw, 1.4rem);
}

.inquiry-calendar-grid {
  gap: 1rem;
}

.inquiry-calendar-card {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: clamp(1.15rem, 3vw, 1.65rem);
  border-color: rgba(123, 175, 143, 0.46);
  background:
    radial-gradient(
      128% 140% at 100% 0%,
      rgba(223, 242, 230, 0.88),
      rgba(223, 242, 230, 0) 58%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(240, 249, 244, 0.96)
    );
  box-shadow: 0 18px 32px rgba(33, 75, 52, 0.1);
  overflow: hidden;
}

.inquiry-calendar-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.34rem;
  background: linear-gradient(180deg, #2f8f57, #7cbf97);
}

.inquiry-calendar-card-copy {
  display: grid;
  gap: 0.5rem;
}

.inquiry-calendar-kicker {
  margin: 0;
  width: fit-content;
  padding: 0.34rem 0.74rem;
  border-radius: 999px;
  background: rgba(47, 143, 87, 0.1);
  color: #1e6940;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inquiry-calendar-card h3 {
  margin: 0;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  color: #173728;
}

.inquiry-calendar-card-copy p:last-child {
  margin: 0;
  color: #456055;
  line-height: 1.55;
}

.inquiry-calendar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.inquiry-calendar-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(47, 143, 87, 0.1);
  color: #1e6940;
  font-size: 0.82rem;
  font-weight: 760;
}

.inquiry-calendar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 1rem;
}

.inquiry-calendar-note {
  margin: 0;
  flex: 1 1 14rem;
  color: #496457;
  font-size: 0.94rem;
  line-height: 1.45;
}

.inquiry-iframe-shell {
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 28px rgba(33, 75, 52, 0.1);
}

.inquiry-iframe {
  width: 100%;
  height: var(--inquiry-iframe-height, clamp(540px, 72dvh, 840px));
  border: 0;
  border-radius: 18px;
  display: block;
  background: #ffffff;
}

.inquiry-iframe-note {
  margin: 0.85rem 0 0;
  color: #4c6659;
  line-height: 1.52;
}

.inquiry-footer-notes {
  width: 100%;
  margin-top: clamp(1.2rem, 3vw, 2rem);
}

@media (max-width: 819px) {
  .calendar-selection-hint,
  .calendar-selection-overlay {
    display: grid;
  }

  .calendar-selection-actions {
    width: 100%;
    align-items: stretch;
  }

  .calendar-selection-cta,
  .calendar-selection-reset {
    width: 100%;
  }

  .request-steps-compact {
    grid-template-columns: minmax(0, 1fr);
  }

  .inquiry-calendar-actions .button {
    width: 100%;
  }

  .inquiry-iframe {
    height: var(--inquiry-iframe-height, clamp(440px, 70dvh, 700px));
  }

}

@media (min-width: 820px) {
  .request-steps-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.house-story-layout {
  display: grid;
  gap: 0.45rem;
  padding: 0 clamp(16px, 1.8vw, 20px);
}

.house-story-layout h2 {
  margin-bottom: 0.35rem;
}

.house-story-copy {
  padding: 0;
}

.house-story-copy p {
  color: #355547;
  line-height: 1.62;
}

.house-story-copy p:last-child {
  margin-bottom: 0;
}

.house-story-section {
  padding-bottom: clamp(1.3rem, 2.4vw, 2.4rem);
}

.house-gallery-section {
  padding-top: clamp(1.3rem, 2.4vw, 2.4rem);
  padding-bottom: clamp(1.3rem, 2.4vw, 2.4rem);
}

.house-gallery-section + .house-story-section {
  padding-top: clamp(1.3rem, 2.4vw, 2.4rem);
}

.travel-note-card {
  padding: 1rem 1.05rem;
  display: grid;
  gap: 0.58rem;
  background: linear-gradient(
    152deg,
    rgba(255, 255, 255, 0.98),
    rgba(241, 249, 245, 0.88)
  );
  border-color: rgba(183, 211, 195, 0.76);
}

.travel-contact-line {
  margin: 0;
  color: #325141;
  font-weight: 620;
}

.faq-layout {
  display: grid;
  gap: 1.2rem;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.faq-group {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  padding: clamp(1rem, 2.1vw, 1.35rem);
  border: 1px solid rgba(191, 215, 201, 0.72);
  border-radius: var(--radius-sm);
  background:
    radial-gradient(
      130% 120% at 100% 0%,
      rgba(223, 242, 230, 0.44),
      rgba(223, 242, 230, 0) 62%
    ),
    linear-gradient(
      152deg,
      rgba(255, 255, 255, 0.98),
      rgba(244, 250, 246, 0.92)
    );
  box-shadow: 0 12px 22px rgba(33, 75, 52, 0.08);
}

.faq-item {
  background: var(--surface);
  border: 1px solid rgba(200, 220, 208, 0.78);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: clip;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 1rem 3.2rem 1rem 1.1rem;
  font-weight: 800;
  color: #173125;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(223, 242, 230, 0.85);
  color: #216741;
  font-size: 1rem;
  line-height: 1;
  transition:
    transform var(--ease),
    background var(--ease);
}

.faq-item[open] summary::after {
  content: "−";
  background: rgba(47, 143, 87, 0.16);
}

.faq-answer {
  padding: 0 1.1rem 1.05rem;
  color: #466252;
}

.faq-answer p {
  margin: 0;
}

.faq-placeholder {
  color: #7a8d82;
  font-style: italic;
}

.legal-content h3,
.legal-content h4 {
  margin-top: 1.45rem;
  margin-bottom: 0.6rem;
}

.legal-content h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
}

.legal-content h4 {
  font-size: clamp(1.18rem, 2.2vw, 1.5rem);
}

.legal-content-privacy h4 {
  font-size: clamp(1.26rem, 2.45vw, 1.65rem);
}

.site-footer {
  margin-top: clamp(3.5rem, 5.6vw, 5.4rem);
  border-top: 1px solid #d8e5dc;
  background:
    radial-gradient(
      120% 140% at 100% 0%,
      rgba(220, 241, 228, 0.55),
      rgba(220, 241, 228, 0) 62%
    ),
    linear-gradient(180deg, #edf5ef, #f6fbf8);
}

.footer-inner {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.5rem);
  padding: clamp(2.5rem, 4.3vw, 3.6rem) 0 clamp(2.8rem, 4.6vw, 3.9rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.2rem;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 0.48rem;
}

.footer-intro {
  gap: 0.62rem;
}

.footer-kicker {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 760;
  color: #5f786a;
}

.footer-lead {
  margin: 0;
  color: #294538;
  max-width: 40ch;
  line-height: 1.55;
}

.footer-heading {
  margin: 0 0 0.24rem;
  color: #1b3b2d;
  font-weight: 780;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-nav a,
.footer-contact-line a {
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 560;
  color: #446053;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact-line a:hover,
.footer-contact-line a:focus-visible {
  color: #1c5d3d;
}

.footer-contact-line {
  margin: 0;
}

.footer-toplink {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.3rem;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(162, 194, 176, 0.64);
  background: rgba(255, 255, 255, 0.86);
  color: #2f4c3d;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.34rem 0.72rem;
}

.footer-toplink:hover,
.footer-toplink:focus-visible {
  border-color: rgba(91, 149, 119, 0.62);
  color: #1d5c3c;
}

.footer-signoff {
  display: grid;
  place-items: center;
  padding: clamp(2.6rem, 5.4vw, 4rem) 0 clamp(1rem, 2.5vw, 1.9rem);
}

.footer-brandmark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #1a3d2d;
  border-radius: 999px;
  padding: 0.34rem 0.58rem;
}

.footer-logo {
  display: block;
  width: auto;
  height: clamp(22px, 3.1vw, 36px);
  opacity: 0.8;
}

.footer-brandmark-text {
  font-family: "Fraunces", "Palatino Linotype", serif;
  font-size: clamp(1.42rem, 2.8vw, 1.95rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.footer-brandmark-fallback {
  display: none;
}

.footer-brandmark:hover,
.footer-brandmark:focus-visible {
  color: #205f3f;
}

.footer-meta {
  padding-bottom: 1.5rem;
  color: #60766a;
}

.js-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 819px) {
  .hero-mobile-brand {
    position: absolute;
    top: calc(var(--mobile-overlay-edge, var(--gutter)) + 0.28rem);
    left: calc(var(--mobile-overlay-edge, var(--gutter)) + 0.32rem);
    z-index: 76;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0.1rem 0.12rem;
  }

  .hero-mobile-brand::before {
    content: "";
    position: absolute;
    inset: -0.5rem -1rem -0.48rem -0.96rem;
    border-radius: 999px;
    background: radial-gradient(
      ellipse 78% 58% at 50% 46%,
      rgba(255, 255, 255, 0.54),
      rgba(255, 255, 255, 0) 76%
    );
    filter: blur(3px);
    pointer-events: none;
    z-index: -1;
  }

  .hero-mobile-brand-logo {
    width: auto;
    height: clamp(30px, 10vw, 46px);
    filter: drop-shadow(0 1px 2px rgba(16, 46, 31, 0.22))
      drop-shadow(0 0 10px rgba(255, 255, 255, 0.55));
  }

  .hero-mobile-brand-fallback {
    font-family: "Fraunces", "Palatino Linotype", serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #15452f;
  }

  .apartment-hero-brand,
  .subpage-hero-brand {
    display: inline-flex;
    top: calc(var(--mobile-overlay-edge, var(--gutter)) + 0.28rem);
    left: calc(var(--mobile-overlay-edge, var(--gutter)) + 0.32rem);
    padding: 0.1rem 0.12rem;
  }

  .apartment-hero-brand::before,
  .subpage-hero-brand::before {
    inset: -0.5rem -1rem -0.48rem -0.96rem;
    filter: blur(3px);
  }

  .apartment-hero-brand-logo,
  .subpage-hero-brand-logo {
    height: clamp(30px, 10vw, 46px);
  }

  .apartment-hero-brand-fallback,
  .subpage-hero-brand-fallback {
    font-size: 1rem;
  }

  body.mobile-menu-open .hero-mobile-brand {
    opacity: 0;
    pointer-events: none;
  }

  body > main {
    margin-top: 0;
    padding-top: 0;
  }

  .hero,
  .apartment-hero,
  .subpage-hero {
    --mobile-hero-image-height: min(72vh, 540px);
    margin-top: 0;
    height: auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: visible;
    margin-bottom: 0;
    isolation: isolate;
  }

  .hero {
    --mobile-hero-image-height: min(72vh, 540px);
  }

  .apartment-hero {
    --mobile-hero-image-height: min(67vh, 520px);
  }

  .subpage-hero {
    --mobile-hero-image-height: min(55vh, 430px);
  }

  @supports (height: 1svh) {
    .hero {
      --mobile-hero-image-height: min(72svh, 540px);
    }

    .apartment-hero {
      --mobile-hero-image-height: min(67svh, 520px);
    }

    .subpage-hero {
      --mobile-hero-image-height: min(55svh, 430px);
    }
  }

  .hero > img,
  .apartment-hero > img,
  .subpage-hero > img {
    height: var(--mobile-hero-image-height);
  }

  .apartment-hero-overlay .container,
  .apartment-sticky-info .container {
    width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  }

  .apartment-hero-overlay .container {
    width: calc(
      100% - (var(--mobile-overlay-edge, var(--gutter)) * 2) -
        var(--mobile-nav-collapsed-size) - 0.64rem
    );
    margin-left: var(--mobile-overlay-edge, var(--gutter));
    margin-right: auto;
  }

  .hero::after,
  .apartment-hero::after,
  .subpage-hero::after {
    content: none;
  }

  .hero-overlay,
  .apartment-hero-overlay,
  .subpage-hero-overlay {
    position: relative;
    z-index: 2;
    height: auto;
    min-height: var(--mobile-hero-image-height);
    align-items: start;
    padding-bottom: clamp(0.9rem, 3.6vw, 1.35rem);
    padding-top: 0;
  }

  .hero-overlay {
    background: transparent;
  }

  .apartment-hero-overlay,
  .subpage-hero-overlay {
    background: transparent;
  }

  .hero-content,
  .apartment-hero-panel,
  .subpage-hero-panel {
    max-width: 100%;
    position: relative;
    z-index: 3;
    transform: none;
  }

  .hero-content {
    margin-top: calc(
      var(--mobile-hero-image-height) - clamp(7rem, 24vw, 10.2rem)
    );
    padding: 0.95rem 1rem 1.08rem;
    border-radius: 1.05rem;
    background: linear-gradient(
      165deg,
      rgba(17, 53, 35, 0.86),
      rgba(34, 94, 62, 0.9)
    );
    box-shadow: 0 16px 28px rgba(13, 36, 24, 0.26);
  }

  .hero-content h1 {
    font-size: clamp(1.45rem, 7vw, 2rem);
    margin-bottom: 0.6rem;
    text-wrap: balance;
  }

  .hero-content p {
    font-size: clamp(0.9rem, 4vw, 1.02rem);
    margin-bottom: 1rem;
    max-width: 44ch;
  }

  .hero-content .eyebrow,
  .apartment-hero-panel .eyebrow,
  .subpage-hero-panel .eyebrow {
    font-size: clamp(0.73rem, 3.4vw, 0.9rem);
    margin-bottom: 0.62rem;
  }

  .hero-content .button {
    min-height: 2.5rem;
    padding: 0.6rem 0.92rem;
    font-size: 0.9rem;
  }

  .hero-actions {
    gap: 0.6rem;
  }

  .apartment-hero-panel,
  .subpage-hero-panel {
    margin-top: calc(
      var(--mobile-hero-image-height) - clamp(7.2rem, 25vw, 10.6rem)
    );
    padding: 0.96rem 0.96rem 1.06rem;
    border-radius: 1.1rem;
    border-color: rgba(214, 234, 223, 0.44);
    background: linear-gradient(
      165deg,
      rgba(20, 57, 37, 0.82),
      rgba(35, 94, 62, 0.87)
    );
    backdrop-filter: blur(6px);
  }

  .apartment-hero-panel h1,
  .subpage-hero-panel h1 {
    font-size: clamp(1.34rem, 6.4vw, 2rem);
    margin-bottom: 0.58rem;
  }

  .apartment-hero-panel p:not(.eyebrow),
  .subpage-hero-panel p:not(.eyebrow) {
    font-size: clamp(0.9rem, 3.6vw, 1rem);
    line-height: 1.5;
  }

  .apartment-hero-actions {
    gap: 0.55rem;
    margin-top: 0.8rem;
  }

  .apartment-hero-cta {
    padding: 0.56rem 0.9rem;
    font-size: 0.88rem;
  }

  .apartment-sticky-info {
    top: calc(var(--mobile-overlay-edge, var(--mobile-nav-top-gap)) + 0.32rem);
    z-index: 50;
    margin-top: clamp(1.12rem, 4.2vw, 1.7rem);
  }

  .apartment-sticky-info .container {
    width: calc(100% - (var(--mobile-overlay-edge, var(--gutter)) * 2));
    margin-left: var(--mobile-overlay-edge, var(--gutter));
    margin-right: auto;
    transition: width var(--ease), margin var(--ease);
  }

  .apartment-sticky-info.is-mobile-docked .container {
    width: calc(
      100% - (var(--mobile-overlay-edge, var(--gutter)) * 2) -
        var(--mobile-nav-collapsed-size) - 0.64rem
    );
  }

  .apartment-sticky-info-inner {
    --apartment-sticky-nav-bleed: 0.54rem;
    grid-template-columns: minmax(0, 1fr);
    padding: 0.48rem 0.54rem 0.56rem;
    gap: 0.42rem;
  }

  .apartment-sticky-main {
    display: grid;
    gap: 0.12rem;
  }

  .apartment-sticky-kicker {
    display: none;
  }

  .apartment-sticky-name {
    font-size: 0.96rem;
  }

  .apartment-sticky-meta {
    gap: 0.3rem;
  }

  .apartment-sticky-meta span {
    min-height: 1.5rem;
    padding: 0.22rem 0.48rem;
    font-size: 0.72rem;
  }

  .apartment-sticky-nav {
    --apartment-sticky-nav-fade: 8px;
    gap: 0.28rem;
    margin-inline: calc(var(--apartment-sticky-nav-bleed, 0px) * -1);
    padding: 0.12rem calc(var(--apartment-sticky-nav-bleed, 0px) + 0.01rem)
      0.06rem;
  }

  .apartment-sticky-nav a {
    min-height: 2.1rem;
    font-size: 0.78rem;
    padding: 0.4rem 0.64rem;
  }

  .slider {
    width: auto;
    margin-left: calc(var(--gutter) * -1);
    margin-right: calc(var(--gutter) * -1);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    --slider-btn-y-offset: 0;
  }

  .slider-viewport {
    border-radius: 0;
  }

  .slide {
    --slide-pad: 0;
  }

  .slide img {
    border-radius: 0;
    aspect-ratio: 16 / 10.4;
  }

  .slide figcaption {
    position: static;
    margin: 0;
    max-inline-size: none;
    padding: 0.72rem var(--gutter) 0.14rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #2a493b;
    font-size: 0.86rem;
    font-weight: 640;
    line-height: 1.4;
    white-space: normal;
    backdrop-filter: none;
    pointer-events: auto;
  }

  .slider-btn {
    top: clamp(128px, 31.2vw, 228px);
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
    transform: translateY(-50%);
  }

  .slider-btn:hover {
    transform: translateY(-50%) scale(1.03);
  }

  .slider-btn.prev {
    left: calc(var(--gutter) - 0.12rem);
  }

  .slider-btn.next {
    right: calc(var(--gutter) - 0.12rem);
  }

  .slider-hitzone {
    width: 16%;
    min-width: 52px;
    max-width: 118px;
  }

  .slider-dots {
    --visible-thumbs: 3;
    margin: 0.68rem 0 0;
    padding: 0 var(--gutter);
    scrollbar-width: none;
  }

  .slider-dots::-webkit-scrollbar {
    display: none;
    height: 0;
  }

  .calendar-controls {
    gap: 0.52rem;
    margin: 0 0 0.92rem;
  }

  .calendar-range {
    font-size: 1.08rem;
    line-height: 1.2;
  }

  .calendar-nav {
    width: 42px;
    height: 42px;
  }

  .calendar-notes {
    display: grid;
    gap: 0.35rem;
    overflow: visible;
    white-space: normal;
  }

  .calendar-note {
    display: block;
    white-space: normal;
  }

  .calendar-note + .calendar-note::before {
    content: none;
    margin: 0;
  }

  .footer-signoff {
    padding-top: clamp(2.8rem, 10vw, 4.2rem);
    padding-bottom: clamp(1.2rem, 4.8vw, 2rem);
  }

  .footer-logo {
    height: clamp(21px, 6.4vw, 30px);
  }
}

@media (min-width: 820px) {
  .apartment-hero-panel,
  .subpage-hero-panel {
    width: min(860px, 100%);
    padding: clamp(1.45rem, 2.4vw, 2.45rem);
  }

  .apartment-hero-panel .eyebrow,
  .subpage-hero-panel .eyebrow,
  .hero-content .eyebrow {
    font-size: 1.04rem;
    margin-bottom: 1.05rem;
  }

  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apartment-info-grid.grid-2,
  .apartment-equip-grid.grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-layout {
    gap: 1.45rem;
  }

  .faq-group {
    padding: 1.25rem 1.3rem 1.35rem;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
  }

  .travel-grid {
    gap: 1.4rem;
  }

  .travel-quickfacts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.05rem;
  }

  .availability {
    padding: 1.2rem;
  }

  .month-card {
    padding: 1rem;
  }

  .day {
    min-height: 60px;
    padding: 0.45rem;
  }
}

@media (min-width: 980px) {
  .section[id] {
    scroll-margin-top: var(--section-anchor-offset, 1.25rem);
  }

  .apartment-section[id] {
    scroll-margin-top: var(--apartment-anchor-offset, 6rem);
  }

  .apartment-inquiry-form-header .inquiry-stage-note {
    max-width: min(82%, 92ch);
  }

  .apartment-section#fotos,
  .apartment-section#infos {
    scroll-margin-top: calc(
      var(--apartment-anchor-offset, 6rem) + clamp(2.2rem, 4vw, 3.2rem) + 64px
    );
  }

  .faq-layout {
    width: min(1080px, 82%);
    gap: 1.55rem;
  }

  .travel-grid {
    width: 100%;
    gap: 1.55rem;
  }

  html,
  body {
    min-height: 100%;
  }

  body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 25rem;
    grid-template-areas:
      "main nav"
      "footer nav";
    align-items: start;
    column-gap: 0;
  }

  .site-header {
    grid-area: nav;
    position: sticky;
    top: 0;
    align-self: start;
    min-height: 100vh;
    border-left: 1px solid rgba(180, 205, 189, 0.55);
    border-bottom: 0;
    border-radius: 0;
    background:
      radial-gradient(
        130% 90% at 100% 0%,
        rgba(229, 244, 234, 0.9),
        rgba(229, 244, 234, 0) 58%
      ),
      rgba(248, 252, 249, 0.96);
    box-shadow:
      -14px 0 28px rgba(25, 58, 39, 0.08),
      inset 14px 0 34px rgba(25, 58, 39, 0.04);
    backdrop-filter: blur(14px);
    overflow: hidden;
    transition:
      box-shadow 700ms cubic-bezier(0.22, 0.74, 0.19, 1),
      background 520ms cubic-bezier(0.22, 0.74, 0.19, 1),
      border-color 520ms cubic-bezier(0.22, 0.74, 0.19, 1);
  }

  .site-header::before {
    content: "";
    position: absolute;
    left: -14px;
    top: 0;
    width: 14px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(
      270deg,
      rgba(73, 136, 102, 0.12) 0%,
      rgba(73, 136, 102, 0) 100%
    );
  }

  .site-header::after {
    content: "";
    position: absolute;
    inset: -10% -28%;
    pointer-events: none;
    background: linear-gradient(
      108deg,
      rgba(255, 255, 255, 0) 36%,
      rgba(255, 255, 255, 0.08) 45%,
      rgba(255, 255, 255, 0.34) 50%,
      rgba(255, 255, 255, 0.1) 55%,
      rgba(255, 255, 255, 0) 64%
    );
    opacity: 0;
    animation: side-nav-shimmer 1880ms cubic-bezier(0.22, 0.74, 0.19, 1) 260ms 1 both;
  }

  .site-header:hover,
  .site-header:focus-within {
    box-shadow:
      -18px 0 34px rgba(25, 58, 39, 0.1),
      inset 14px 0 34px rgba(25, 58, 39, 0.05);
  }

  .site-header.scrolled {
    box-shadow:
      -16px 0 30px rgba(25, 58, 39, 0.1),
      inset 14px 0 34px rgba(25, 58, 39, 0.06);
  }

  .site-header .container {
    width: 100%;
    margin: 0;
  }

  .header-inner {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.05rem;
    padding: 1.2rem 1.05rem;
  }

  .nav-toggle {
    display: none;
  }

  .header-top {
    display: block;
    order: 2;
    margin-top: calc(clamp(6rem, 12.5vh, 8.5rem) + 120px);
    margin-bottom: 0.5rem;
  }

  .brand {
    display: flex;
    margin-bottom: 0;
    padding-left: 0.52rem;
  }

  .brand-text {
    font-size: 1.24rem;
  }

  .brand-logo {
    height: clamp(36px, 3.1vw, 52px);
  }

  .site-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0.36rem;
    order: 3;
    flex: 0 0 auto;
    margin-top: 0;
    margin-bottom: 0;
    max-height: none;
    opacity: 1;
    pointer-events: auto;
    overflow: visible;
    padding: 0.2rem 0 0 0.44rem;
  }

  .site-nav-item > a {
    font-size: 1.01rem;
    padding: 0.62rem 0 0.72rem;
  }

  .site-subnav {
    margin-bottom: 0.55rem;
    padding-left: 0.72rem;
  }

  .site-subnav a {
    font-size: 0.98rem;
    padding: 0.28rem 0;
  }

  .site-subnav a[href="#verfuegbarkeit"].is-current {
    text-decoration: none;
  }

  .hero,
  .apartment-hero,
  .subpage-hero {
    --hero-bleed-right: 1.25rem;
    --hero-overlay-extra-right: 2.5rem;
    overflow-x: visible;
    overflow-y: clip;
  }

  .hero > img,
  .apartment-hero > img,
  .subpage-hero > img {
    inset: 0 auto 0 0;
    width: calc(100% + var(--hero-bleed-right));
    height: 100%;
    max-width: none;
    transform:
      translate3d(var(--hero-photo-shift-x), var(--hero-photo-shift-y), 0)
      scale(var(--hero-photo-scale));
  }

  .hero-overlay,
  .apartment-hero-overlay,
  .subpage-hero-overlay {
    width: calc(100% + var(--hero-bleed-right));
    margin-right: calc(var(--hero-bleed-right) * -1);
  }

  .hero-overlay .container {
    margin-left: max(
      var(--gutter),
      calc((100% - var(--hero-bleed-right) - var(--container)) / 2)
    );
    margin-right: auto;
    transform: none;
  }

  .apartment-hero-overlay .container {
    transform: translateX(calc(var(--hero-bleed-right) * -0.5));
  }

  body > main {
    grid-area: main;
  }

  body > footer {
    grid-area: footer;
  }

  .calendar-grid {
    gap: 1.2rem;
  }

  .availability {
    padding: 1.35rem;
  }

  .month-card {
    padding: 1.05rem;
  }

  .month-card h3 {
    font-size: 1.12rem;
  }

  .apartment-sticky-info {
    top: 1.3rem;
    margin-top: 1.7rem;
  }

  .apartment-sticky-info-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.9rem;
    padding: 0.82rem 0.95rem;
  }

  .apartment-sticky-main {
    gap: 0.34rem;
  }

  .apartment-sticky-nav {
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
  }

  .apartment-sticky-nav a {
    font-size: 0.9rem;
    font-weight: 760;
    padding: 0.5rem 0.82rem;
  }

  .contact-tile {
    padding: 1.15rem 1.2rem;
  }

  .travel-card,
  .travel-map-card,
  .travel-note-card {
    padding: 1.15rem 1.2rem;
  }

  .travel-map-wrap {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
    align-items: start;
    gap: 2rem;
  }

  .travel-quickfacts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.12rem;
  }

  .days-grid {
    gap: 0.35rem;
  }

  .day {
    min-height: 68px;
    padding: 0.5rem 0.45rem 0.42rem;
  }

  .day-num {
    font-size: 0.9rem;
  }

  .day-price {
    font-size: 0.72rem;
    line-height: 1.15;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
  }
}

@media (min-width: 1200px) {
  .calendar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .travel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.2rem, 1.9vw, 1.6rem);
  }

  .apartment-info-grid.grid-2,
  .apartment-equip-grid.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: 88vh;
  }

  .apartment-hero {
    min-height: 82vh;
  }

  .subpage-hero {
    min-height: min(64vh, 620px);
  }

  .container {
    width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
    gap: 1.4rem 1.8rem;
  }

  .footer-signoff {
    padding-top: 2.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .js-reveal,
  .js-reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
