@font-face {
  font-family: "Manrope";
  src: url("assets/manrope-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "PT Sans";
  src: url("assets/pt-sans-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "PT Sans";
  src: url("assets/pt-sans-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --surface-forest: #073f32;
  --surface-forest-deep: #03271f;
  --surface-glass: rgb(3 43 34 / 76%);
  --surface-glass-strong: rgb(3 43 34 / 90%);
  --surface-ivory: #f3eee3;
  --text-primary: #fffaf0;
  --text-muted: #d7dfd5;
  --text-dark: #17352d;
  --accent-metal: #c4a66d;
  --action-primary: rgb(8 92 67 / 88%);
  --action-hover: rgb(6 110 78 / 96%);
  --danger: #ffc8b9;
  --focus: #f2d28f;
  --page-inline: clamp(1.25rem, 5vw, 4.75rem);
  --header-height: 6.5rem;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface-forest-deep);
  color: var(--text-primary);
  font-family: "PT Sans", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  inset: .75rem auto auto .75rem;
  padding: .75rem 1rem;
  background: var(--surface-ivory);
  color: var(--text-dark);
  transform: translateY(-180%);
  transition: transform .2s var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(100%, 1440px);
  margin-inline: auto;
  padding-inline: var(--page-inline);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  isolation: isolate;
}

.hero__scene,
.hero__veil {
  position: absolute;
  z-index: -3;
  inset: 0 auto auto 0;
  width: 100%;
  height: min(100svh, 940px);
}

.hero__scene {
  background-position: center;
  background-size: cover;
  transition: opacity .8s var(--ease-out), filter .8s var(--ease-out);
}

.hero__scene--day {
  background-image: url("assets/hero-day.jpg");
  opacity: 1;
}

.hero__scene--night {
  background-image: url("assets/hero-night.jpg");
  opacity: 0;
}

[data-theme="night"] .hero__scene--day {
  opacity: 0;
}

[data-theme="night"] .hero__scene--night {
  opacity: 1;
}

.hero__veil {
  z-index: -2;
  background:
    linear-gradient(90deg, rgb(0 28 22 / 88%) 0%, rgb(0 35 27 / 58%) 43%, rgb(0 28 22 / 10%) 76%),
    linear-gradient(0deg, rgb(0 28 22 / 88%) 0%, transparent 42%);
}

[data-theme="night"] .hero__veil {
  background:
    linear-gradient(90deg, rgb(0 20 17 / 88%) 0%, rgb(0 28 22 / 58%) 43%, rgb(0 20 17 / 12%) 76%),
    linear-gradient(0deg, rgb(0 22 18 / 93%) 0%, transparent 45%);
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.brand__emblem {
  position: relative;
  width: 3.75rem;
  height: 3.75rem;
  padding: .25rem;
  border: 1px solid rgb(196 166 109 / 78%);
  border-radius: 50%;
  background: rgb(3 39 31 / 56%);
  box-shadow: 0 .45rem 1.5rem rgb(0 0 0 / 28%);
  cursor: pointer;
  perspective: 600px;
}

.brand__coin {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.brand__emblem.is-flipping .brand__coin {
  animation: coin-flip .8s var(--ease-out) both;
}

.brand__face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  backface-visibility: hidden;
}

.brand__face--front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand__face--back {
  color: var(--accent-metal);
  background: var(--surface-forest);
  transform: rotateY(180deg);
}

.theme-symbol {
  width: 1.6rem;
  height: 1.6rem;
}

.theme-symbol--sun {
  display: none;
}

[data-theme="night"] .theme-symbol--moon {
  display: none;
}

[data-theme="night"] .theme-symbol--sun {
  display: block;
}

.brand__name {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(.85rem, 1vw, 1.05rem);
  letter-spacing: .16em;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: clamp(1.3rem, 3vw, 3rem);
}

.site-nav a,
.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s ease;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--text-primary);
}

.locale-switch {
  justify-self: end;
  display: flex;
  align-items: center;
  padding: .22rem;
  border: 1px solid rgb(255 255 255 / 32%);
  border-radius: 999px;
  background: rgb(3 39 31 / 48%);
  backdrop-filter: blur(14px);
  box-shadow: 0 .5rem 1.5rem rgb(0 0 0 / 16%);
}

.locale-switch button {
  min-width: 2.75rem;
  min-height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
}

.locale-switch button[aria-pressed="true"] {
  background: rgb(255 255 255 / 15%);
  color: var(--text-primary);
}

.locale-switch span {
  width: 1px;
  height: 1rem;
  background: rgb(255 255 255 / 26%);
}

.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(min(100svh, 940px) - var(--header-height));
  padding-top: clamp(2rem, 7vh, 5rem);
  padding-bottom: clamp(2.5rem, 5vh, 4.5rem);
}

.hero__copy {
  max-width: 44rem;
  margin-bottom: clamp(1.8rem, 4vh, 3.2rem);
  text-wrap: balance;
}

.hero__copy h1 {
  max-width: 12ch;
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 6.6vw, 6rem);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.035em;
  text-shadow: 0 .3rem 1.7rem rgb(0 0 0 / 35%);
}

.hero__copy p {
  margin: 1.25rem 0 0;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}

.window-hotspot {
  position: absolute;
  z-index: 2;
  top: 13%;
  right: var(--page-inline);
  display: flex;
  align-items: center;
  gap: .5rem;
  min-height: 2.75rem;
  padding: .55rem .75rem;
  border: 1px solid transparent;
  border-radius: .75rem;
  background: transparent;
  color: rgb(255 250 240 / 82%);
  cursor: pointer;
  opacity: 0;
  transition: opacity .2s ease, background .2s ease, border-color .2s ease;
}

.window-hotspot svg {
  width: 1.25rem;
  height: 1.25rem;
}

.window-hotspot:hover,
.window-hotspot:focus-visible {
  border-color: rgb(255 255 255 / 38%);
  background: rgb(3 39 31 / 46%);
  opacity: 1;
}

.booking {
  position: relative;
  display: grid;
  grid-template-columns: minmax(9.5rem, 1fr) minmax(9.5rem, 1fr) minmax(12rem, 1.1fr) auto minmax(10rem, auto);
  align-items: start;
  gap: 1px;
  width: min(100%, 72rem);
  padding: .5rem;
  border: 1px solid rgb(255 255 255 / 29%);
  border-radius: 1rem;
  background: var(--surface-glass);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 28%);
  backdrop-filter: blur(18px) saturate(1.08);
}

.booking__field,
.guests {
  min-width: 0;
  min-height: 4.75rem;
  padding: .72rem .85rem;
  border-right: 1px solid rgb(255 255 255 / 16%);
}

.booking__field label,
.guests__label {
  display: block;
  color: var(--text-muted);
  font-size: .8rem;
  line-height: 1.2;
}

.booking__field input {
  width: 100%;
  min-height: 2.15rem;
  padding: .15rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text-primary);
  color-scheme: dark;
  font-weight: 700;
}

.booking__field input::-webkit-calendar-picker-indicator {
  filter: invert(1) sepia(.2);
  cursor: pointer;
}

.field-error {
  display: block;
  min-height: 1rem;
  color: var(--danger);
  font-size: .72rem;
  line-height: 1.2;
}

.booking__field:has(.field-error:not(:empty)) input {
  box-shadow: inset 0 -2px var(--danger);
}

.guests {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .18rem .55rem;
}

.guests__label {
  grid-column: 1 / -1;
}

.stepper {
  display: inline-grid;
  grid-template-columns: 2.75rem 2rem 2.75rem;
  align-items: center;
  color: var(--text-primary);
}

.stepper button {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 50%;
  background: rgb(255 255 255 / 7%);
  cursor: pointer;
}

.stepper button:disabled {
  cursor: not-allowed;
  opacity: .4;
}

.stepper output {
  text-align: center;
  font-weight: 700;
}

.disclosure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  min-height: 2.75rem;
  padding: 0 .35rem;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
}

.disclosure svg {
  width: 1rem;
  height: 1rem;
  transition: transform .2s ease;
}

.disclosure[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.children-panel {
  position: absolute;
  z-index: 7;
  top: calc(100% + 1rem);
  left: 0;
  width: min(19rem, 80vw);
  padding: 1rem;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: .9rem;
  background: var(--surface-glass-strong);
  box-shadow: 0 1rem 2.5rem rgb(0 0 0 / 35%);
  backdrop-filter: blur(18px);
}

.children-panel:not([hidden]) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.filters-button {
  display: grid;
  place-items: center;
  width: 3.5rem;
  min-height: 4.75rem;
  border: 0;
  border-radius: .75rem;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
}

.filters-button:hover {
  background: rgb(255 255 255 / 8%);
  color: var(--text-primary);
}

.filters-button svg {
  width: 1.5rem;
  height: 1.5rem;
}

.filters-note {
  position: absolute;
  z-index: 7;
  right: 10rem;
  top: calc(100% + .75rem);
  width: min(22rem, 82vw);
  margin: 0;
  padding: .85rem 1rem;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: .8rem;
  background: var(--surface-glass-strong);
  color: var(--text-muted);
  box-shadow: 0 1rem 2.5rem rgb(0 0 0 / 28%);
}

.booking__submit {
  min-height: 4.75rem;
  padding: 0 1.5rem;
  border: 2px solid rgb(139 211 171 / 82%);
  border-radius: .8rem;
  background: var(--action-primary);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, transform .2s var(--ease-out);
}

.booking__submit:hover,
.booking__submit:focus-visible {
  background: var(--action-hover);
}

.booking__submit:active {
  transform: translateY(1px);
}

.booking-status {
  min-height: 1.5rem;
  margin: .55rem 0 0 .75rem;
  color: var(--danger);
  font-size: .9rem;
}

.apartment-rail {
  display: flex;
  align-items: end;
  gap: 1rem;
  width: min(100%, 46rem);
  margin-top: clamp(1rem, 3vh, 2.4rem);
}

.apartment-card {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: .9rem;
  box-shadow: 0 1rem 2.5rem rgb(0 0 0 / 30%);
}

.apartment-card--primary {
  width: clamp(18rem, 27vw, 21rem);
}

.apartment-card--secondary {
  width: clamp(14rem, 20vw, 17rem);
  transform: translateY(-.75rem);
}

.apartment-card--secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 35%, rgb(3 39 31 / 70%));
  pointer-events: none;
}

.apartment-card img {
  width: 100%;
  aspect-ratio: 1.48;
  object-fit: cover;
}

.apartment-card__caption {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  padding: 2rem .9rem .75rem;
  background: linear-gradient(transparent, rgb(0 20 16 / 92%));
}

.apartment-card__caption h2,
.apartment-card__caption p {
  margin: 0;
}

.apartment-card__caption h2 {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1rem;
  letter-spacing: -.01em;
}

.apartment-card__caption p {
  color: var(--text-muted);
  font-size: .85rem;
}

.section {
  position: relative;
  padding-block: clamp(5rem, 10vw, 9rem);
}

.section h2 {
  max-width: 13ch;
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.section--light {
  background: var(--surface-ivory);
  color: var(--text-dark);
}

.editorial-grid,
.trust-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .65fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: end;
}

.section__lead,
.trust-layout p,
.contact-layout p {
  max-width: 60ch;
  margin: 0 0 2rem;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  color: var(--surface-forest);
  font-weight: 700;
  text-underline-offset: .3rem;
}

.section--forest {
  background: var(--surface-forest);
}

.trust-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgb(255 255 255 / 35%);
  border-bottom: 1px solid rgb(255 255 255 / 35%);
  color: var(--text-primary);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
}

.trust-link svg {
  width: 1.7rem;
  height: 1.7rem;
  transition: transform .2s var(--ease-out);
}

.trust-link:hover svg {
  transform: translate(.2rem, -.2rem);
}

.section--contact {
  background: #c9b487;
  color: #112f27;
}

.contact-layout address {
  display: grid;
  gap: .85rem;
  font-style: normal;
}

.contact-layout address a {
  width: fit-content;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 700;
  text-underline-offset: .35rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 2rem;
  background: var(--surface-forest-deep);
  color: var(--text-muted);
}

.chat-launcher {
  position: fixed;
  z-index: 20;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgb(255 255 255 / 42%);
  border-radius: 50%;
  background: var(--surface-forest);
  box-shadow: 0 .75rem 2rem rgb(0 0 0 / 35%);
  cursor: pointer;
}

.chat-launcher svg {
  width: 1.45rem;
  height: 1.45rem;
}

.tooltip {
  position: absolute;
  right: calc(100% + .65rem);
  width: max-content;
  max-width: 12rem;
  padding: .42rem .65rem;
  border-radius: .45rem;
  background: var(--surface-forest-deep);
  color: var(--text-primary);
  font-size: .8rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(.4rem);
  transition: opacity .16s ease, transform .16s ease;
}

.chat-launcher:hover .tooltip,
.chat-launcher:focus-visible .tooltip {
  opacity: 1;
  transform: translateX(0);
}

.chat-panel {
  position: fixed;
  z-index: 19;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: 5.5rem;
  width: min(24rem, calc(100vw - 2rem));
  padding: 1.25rem;
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 1rem;
  background: var(--surface-glass-strong);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 40%);
  backdrop-filter: blur(18px);
}

.chat-panel:not([hidden]) {
  animation: panel-in .3s var(--ease-out) both;
}

.chat-panel__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.chat-panel h2 {
  margin: .3rem 0 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.35rem;
}

.demo-label {
  color: var(--accent-metal);
  font-size: .78rem;
  font-weight: 700;
}

.chat-panel__header button,
.notice button,
.handoff__close {
  display: grid;
  place-items: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 8%);
  cursor: pointer;
}

.chat-panel__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin-top: 1.2rem;
}

.chat-panel__actions a {
  display: grid;
  place-items: center;
  min-height: 3rem;
  padding: .5rem;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: .65rem;
  text-align: center;
  text-decoration: none;
}

.notice {
  position: fixed;
  z-index: 25;
  left: 50%;
  bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(34rem, calc(100vw - 2rem));
  padding: .75rem .75rem .75rem 1rem;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: .85rem;
  background: var(--surface-glass-strong);
  box-shadow: 0 .8rem 2rem rgb(0 0 0 / 32%);
  transform: translateX(-50%);
}

.notice:not([hidden]) {
  animation: panel-in .3s var(--ease-out) both;
}

.notice span {
  flex: 1;
}

.handoff {
  width: min(36rem, calc(100vw - 2rem));
  padding: 0;
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 1rem;
  background: var(--surface-forest-deep);
  color: var(--text-primary);
  box-shadow: 0 2rem 5rem rgb(0 0 0 / 55%);
}

.handoff::backdrop {
  background: rgb(0 19 15 / 68%);
  backdrop-filter: blur(6px);
}

.handoff form {
  position: relative;
  padding: clamp(1.35rem, 4vw, 2.5rem);
}

.handoff h2 {
  max-width: 18ch;
  margin: 0 0 1rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -.025em;
}

.handoff__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.handoff dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .25rem 1rem;
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid rgb(255 255 255 / 18%);
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.handoff dt {
  color: var(--text-muted);
}

.handoff dd {
  margin: 0;
  text-align: right;
  font-weight: 700;
}

.handoff__actions {
  display: flex;
  justify-content: end;
  gap: .75rem;
}

.handoff__actions button,
.handoff__actions a {
  display: inline-grid;
  place-items: center;
  min-height: 3rem;
  padding: .55rem 1rem;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: .65rem;
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  text-decoration: none;
}

.handoff__actions a {
  border-color: rgb(139 211 171 / 80%);
  background: var(--action-primary);
  font-weight: 700;
}

@keyframes coin-flip {
  0% { transform: rotateY(0deg); }
  50% { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(.75rem); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .booking {
    grid-template-columns: 1fr 1fr;
    max-width: 42rem;
    gap: .35rem;
  }

  .booking__field,
  .guests {
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 14%);
  }

  .guests {
    grid-column: 1 / -1;
  }

  .filters-button {
    width: 100%;
    min-height: 3.5rem;
  }

  .booking__submit {
    min-height: 3.5rem;
  }

  .filters-note {
    right: 0;
  }

  .editorial-grid,
  .trust-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 5.4rem;
  }

  .hero__scene,
  .hero__veil {
    height: 68rem;
  }

  .hero__scene {
    background-position: 59% center;
  }

  .hero__veil,
  [data-theme="night"] .hero__veil {
    background:
      linear-gradient(180deg, rgb(0 25 20 / 68%) 0%, rgb(0 28 22 / 30%) 30%, rgb(0 25 20 / 89%) 69%, rgb(0 25 20 / 97%) 100%),
      linear-gradient(90deg, rgb(0 28 22 / 64%), transparent 80%);
  }

  .site-header {
    gap: .7rem;
  }

  .brand {
    gap: .55rem;
  }

  .brand__emblem {
    width: 3rem;
    height: 3rem;
  }

  .brand__name {
    max-width: 7rem;
    font-size: .72rem;
    line-height: 1.2;
  }

  .locale-switch button {
    min-width: 2.75rem;
  }

  .hero__content {
    display: block;
    min-height: 68rem;
    padding-top: clamp(4rem, 18vh, 9rem);
  }

  .hero__copy {
    margin-bottom: 2rem;
  }

  .hero__copy h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero__copy p {
    max-width: 20rem;
  }

  .window-hotspot {
    top: 4.5rem;
    right: var(--page-inline);
  }

  .booking {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    padding: .45rem;
  }

  .booking__field,
  .guests {
    min-height: 4.2rem;
    padding: .55rem .65rem;
  }

  .guests {
    grid-template-columns: 1fr auto;
  }

  .stepper {
    grid-template-columns: 2.75rem 1.8rem 2.75rem;
  }

  .filters-button,
  .booking__submit {
    min-height: 3.6rem;
  }

  .filters-note {
    left: 0;
    right: auto;
  }

  .apartment-rail {
    width: calc(100vw - var(--page-inline));
    overflow-x: auto;
    padding-right: var(--page-inline);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .apartment-rail::-webkit-scrollbar {
    display: none;
  }

  .apartment-card {
    scroll-snap-align: start;
  }

  .apartment-card--primary,
  .apartment-card--secondary {
    width: min(18.5rem, 79vw);
    transform: none;
  }

  .apartment-card--secondary::after {
    background: linear-gradient(90deg, transparent 60%, rgb(3 39 31 / 35%));
  }

  .section {
    padding-block: 5rem;
  }

  .section h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .site-footer {
    flex-direction: column;
  }

  .chat-panel__actions,
  .handoff__actions {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .handoff__actions > * {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
