@font-face {
  font-family: "Poppins HH";
  src: url("./assets/fonts/Poppins-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins HH";
  src: url("./assets/fonts/Poppins-ExtraLight.woff2") format("woff2");
  font-style: normal;
  font-weight: 200;
  font-display: swap;
}

:root {
  color-scheme: light;
  background: #fff;

  --color-white: #fff;
  --color-green-light: #d1dbc3;
  --color-green: #abb899;
  --color-green-olive: #7f9463;
  --color-green-dark: #556342;
  --color-green-deep: #2a3121;
  --color-brown: #9f8d7c;
  --color-beige: #c2b2a3;
  --color-taupe: #91857a;
  --color-text: #615952;
  --color-brown-deep: #302c29;

  --font-display:
    "Avenir LT W01 85 Heavy", "Avenir Next", Avenir, "Helvetica Neue", Arial,
    sans-serif;
  --font-copy:
    "Avenir LT W01 35 Light", Avenir, "Avenir Next", "Helvetica Neue", Arial,
    sans-serif;
  --font-accent:
    "Poppins HH", "Poppins SemiBold", Poppins, "Avenir Next", Avenir,
    sans-serif;
  --font-ui:
    "DIN Next W01 Light", "Avenir LT W01 35 Light", Avenir, "Avenir Next",
    "Helvetica Neue", Arial, sans-serif;

  --header-main-height: 2.75rem;
  --energy-strip-height: 2.9rem;
  --site-footer-height: 3.5rem;
  --site-chrome-top: calc(
    var(--header-main-height) + var(--energy-strip-height)
  );
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: var(--color-white);
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  color: var(--color-text);
  font-family: var(--font-copy);
  touch-action: none;
}

.site-header,
.site-footer {
  position: fixed;
  z-index: 20;
  right: 0;
  left: 0;
  color: var(--color-white);
}

.site-header {
  top: 0;
  filter: drop-shadow(0 5px 20px rgba(48, 44, 41, 0.12));
}

.site-header-main {
  display: grid;
  height: var(--header-main-height);
  padding: 0 clamp(1.5rem, 3vw, 3rem);
  grid-template-columns: minmax(10rem, 0.9fr) auto minmax(3rem, 0.2fr);
  align-items: center;
  gap: clamp(1rem, 2vw, 2.5rem);
  background: var(--color-brown);
}

.site-wordmark {
  position: relative;
  width: clamp(7.4rem, 14.5vw, 12rem);
  height: 1.25rem;
  overflow: hidden;
}

.site-wordmark img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 107.5%;
  max-width: none;
  height: auto;
  transform: translate(-4.3%, -25%);
}

.site-navigation,
.footer-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-navigation {
  gap: clamp(0.85rem, 2.15vw, 2.45rem);
}

.site-navigation-item,
.site-language,
.footer-navigation-item {
  font-family: var(--font-copy);
  font-weight: 300;
  letter-spacing: 0.025em;
  line-height: 1;
  white-space: nowrap;
}

.site-navigation-item {
  position: relative;
  padding: 0.45rem 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: clamp(0.68rem, 0.9vw, 0.9rem);
  transition: opacity 160ms ease;
}

.site-navigation-item::after {
  position: absolute;
  right: 0;
  bottom: 0.12rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--color-white);
  opacity: 0.82;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-navigation-item.is-active {
  font-weight: 600;
}

.site-navigation-item.is-active::after {
  transform: scaleX(1);
}

.site-navigation-item:disabled {
  cursor: default;
  opacity: 0.68;
}

.site-navigation-item:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

.site-language {
  justify-self: end;
  font-family: "Poppins HH", Poppins, var(--font-ui);
  font-size: 0.72rem;
  font-weight: 200;
  letter-spacing: 0.12em;
}

.energy-strip {
  display: flex;
  min-height: var(--energy-strip-height);
  padding: 0.6rem clamp(1rem, 4vw, 4rem);
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  background: var(--color-green);
  color: var(--color-white);
  font-family: var(--font-accent);
  font-size: clamp(0.64rem, 0.88vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.25;
  text-align: center;
}

.site-footer {
  bottom: 0;
  min-height: var(--site-footer-height);
  background: var(--color-brown);
  box-shadow: 0 -5px 20px rgba(48, 44, 41, 0.12);
}

.footer-navigation {
  min-height: var(--site-footer-height);
  padding: 0.9rem clamp(1rem, 4vw, 4rem);
  gap: clamp(1.2rem, 3.8vw, 4.5rem);
}

.footer-navigation-item {
  margin: 0;
  padding: 0.3rem 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font-size: clamp(0.62rem, 0.77vw, 0.78rem);
  letter-spacing: 0.08em;
}

button.footer-navigation-item {
  position: relative;
  cursor: pointer;
}

button.footer-navigation-item::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.8;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

button.footer-navigation-item:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.consent-layer,
.legal-layer,
.contact-layer {
  position: fixed;
  inset: 0;
  display: grid;
  padding: clamp(1rem, 4vw, 3rem);
  place-items: center;
  background:
    linear-gradient(
      135deg,
      rgba(42, 49, 33, 0.82),
      rgba(48, 44, 41, 0.76)
    );
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
}

.consent-layer {
  z-index: 100;
}

.legal-layer {
  z-index: 110;
}

.legal-layer.is-over-contact {
  z-index: 130;
}

.contact-layer {
  z-index: 120;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 220ms ease,
    visibility 0s linear;
}

.consent-layer[hidden],
.legal-layer[hidden],
.contact-layer[hidden],
.consent-settings[hidden],
.legal-panel[hidden],
.dialog-close[hidden] {
  display: none;
}

.contact-dialog {
  position: relative;
  display: grid;
  width: min(100%, 66rem);
  max-height: min(92vh, 48rem);
  max-height: min(92dvh, 48rem);
  overflow: hidden;
  border: 1px solid rgba(194, 178, 163, 0.7);
  border-radius: 0.35rem;
  outline: 0;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.35fr);
  background: #f3efe9;
  box-shadow: 0 32px 90px rgba(20, 23, 17, 0.38);
  color: var(--color-text);
  touch-action: pan-y;
}

.contact-dialog-intro {
  display: flex;
  min-width: 0;
  padding: clamp(2.35rem, 4vw, 4.4rem) clamp(2rem, 3.4vw, 3.6rem);
  flex-direction: column;
  background: var(--color-green-deep);
  color: var(--color-white);
}

.contact-dialog-intro .dialog-eyebrow {
  color: var(--color-green-light);
}

.contact-dialog-intro h2 {
  max-width: 11ch;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-copy);
  font-size: clamp(2rem, 3.1vw, 3.15rem);
  font-weight: 300;
  letter-spacing: -0.032em;
  line-height: 1.01;
  text-wrap: balance;
}

.contact-dialog-intro > p:last-of-type {
  max-width: 34ch;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.58;
}

.contact-dialog-direct {
  display: flex;
  margin-top: auto;
  padding-top: 2.6rem;
  flex-direction: column;
  gap: 0.48rem;
}

.contact-dialog-direct > span {
  margin-bottom: 0.18rem;
  color: var(--color-green-light);
  font-family: var(--font-accent);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-dialog-direct a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.4;
  overflow-wrap: anywhere;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 0.2em;
}

.contact-dialog-form-panel {
  position: relative;
  min-height: 0;
  min-width: 0;
  padding: clamp(3.8rem, 5vw, 5.2rem) clamp(1.7rem, 4vw, 3.8rem)
    clamp(1.8rem, 3vw, 3rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: var(--color-taupe) rgba(194, 178, 163, 0.22);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.contact-dialog-close {
  position: absolute;
  top: 1.35rem;
  right: clamp(1.7rem, 4vw, 3.8rem);
  padding: 0.4rem 0;
  border: 0;
  border-bottom: 1px solid rgba(97, 89, 82, 0.5);
  outline: 0;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  font-family: var(--font-copy);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
}

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

.contact-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.43rem;
}

.contact-field.is-wide,
.contact-form-footer.is-wide,
.contact-form-status.is-wide {
  grid-column: 1 / -1;
}

.contact-field label {
  color: var(--color-text);
  font-family: var(--font-copy);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.contact-field label > span:not([aria-hidden="true"]) {
  margin-left: 0.3rem;
  color: var(--color-taupe);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: none;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(97, 89, 82, 0.28);
  border-radius: 0.2rem;
  outline: 0;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-brown-deep);
  font-family: var(--font-copy);
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.35;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.contact-field input,
.contact-field select {
  min-height: 2.85rem;
  padding: 0.66rem 0.78rem;
}

.contact-field textarea {
  min-height: 6.6rem;
  padding: 0.75rem 0.78rem;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--color-green-dark);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(127, 148, 99, 0.16);
}

.contact-field input[aria-invalid="true"] {
  border-color: #8f4f42;
  box-shadow: 0 0 0 3px rgba(143, 79, 66, 0.12);
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.contact-form-footer {
  display: flex;
  margin-top: 0.1rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.contact-form-footer p {
  max-width: 42ch;
  margin: 0;
  color: var(--color-taupe);
  font-size: 0.7rem;
  font-weight: 300;
  line-height: 1.5;
}

.contact-form-footer p button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  outline: 0;
  background: transparent;
  color: var(--color-green-dark);
  cursor: pointer;
  font: inherit;
}

.contact-submit {
  min-width: 12.75rem;
  min-height: 2.9rem;
  padding: 0.78rem 1.25rem;
  border: 0;
  border-radius: 999px;
  outline: 0;
  flex: 0 0 auto;
  background: var(--color-taupe);
  box-shadow: 0 10px 24px rgba(48, 44, 41, 0.14);
  color: var(--color-white);
  cursor: pointer;
  font-family: var(--font-copy);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  transition:
    background 160ms ease,
    transform 160ms ease,
    opacity 160ms ease;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.contact-dialog-close:focus-visible,
.contact-form-footer p button:focus-visible,
.contact-submit:focus-visible {
  outline: 3px solid var(--color-green-olive);
  outline-offset: 3px;
}

.contact-form-status {
  min-height: 1.2rem;
  margin: -0.2rem 0 0;
  color: var(--color-green-dark);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
}

.contact-form-status.is-error {
  color: #8f4f42;
}

.contact-form-status.is-success {
  color: var(--color-green-dark);
}

.consent-dialog,
.legal-dialog {
  position: relative;
  width: min(100%, 68rem);
  border: 1px solid rgba(194, 178, 163, 0.65);
  outline: 0;
  background: rgba(251, 250, 247, 0.99);
  box-shadow: 0 32px 90px rgba(20, 23, 17, 0.34);
  color: var(--color-text);
  touch-action: pan-y;
}

.consent-dialog {
  width: min(100%, 52rem);
  max-height: min(90vh, 52rem);
  max-height: min(90dvh, 52rem);
  padding: clamp(1.6rem, 4.2vw, 3.35rem);
  overflow-y: auto;
  border-radius: 0.35rem;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.dialog-close {
  display: inline-grid;
  width: 2.55rem;
  height: 2.55rem;
  padding: 0;
  border: 1px solid rgba(97, 89, 82, 0.24);
  border-radius: 50%;
  outline: 0;
  place-items: center;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  flex: 0 0 auto;
  font-family: var(--font-copy);
  font-size: 1.7rem;
  font-weight: 200;
  line-height: 1;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.consent-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.dialog-close:focus-visible,
.consent-policy-links button:focus-visible,
.consent-choice:focus-visible,
.consent-save:focus-visible,
.consent-settings:focus-visible,
.legal-navigation button:focus-visible,
.legal-consent-button:focus-visible {
  outline: 3px solid var(--color-green-olive);
  outline-offset: 3px;
}

.dialog-eyebrow,
.legal-kicker {
  margin: 0 0 0.65rem;
  color: var(--color-brown);
  font-family: var(--font-accent);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.consent-dialog h2,
.legal-dialog h2,
.legal-panel h3 {
  margin: 0;
  color: var(--color-brown-deep);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.consent-dialog h2 {
  max-width: 17ch;
  font-size: clamp(1.75rem, 3.15vw, 2.65rem);
  line-height: 1.04;
}

.consent-intro {
  max-width: 66ch;
  margin: 1.05rem 0 0;
  font-size: clamp(0.9rem, 1.1vw, 1.02rem);
  font-weight: 300;
  line-height: 1.62;
}

.consent-policy-links {
  display: flex;
  margin-top: 0.8rem;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-taupe);
  font-size: 0.8rem;
}

.consent-policy-links button {
  padding: 0.18rem 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  outline: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.consent-primary-actions {
  display: grid;
  margin-top: clamp(1.4rem, 3vw, 2rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.consent-choice,
.consent-save,
.legal-consent-button {
  min-height: 2.95rem;
  padding: 0.78rem 1.2rem;
  border: 0;
  border-radius: 1.55rem;
  outline: 0;
  color: var(--color-white);
  cursor: pointer;
  font-family: var(--font-copy);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.2;
  transition:
    background 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.consent-choice {
  box-shadow: 0 10px 26px rgba(48, 44, 41, 0.15);
}

.consent-choice:first-child {
  background: var(--color-green-dark);
}

.consent-choice:nth-child(2) {
  background: var(--color-taupe);
}

.consent-settings {
  margin-top: 1rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(97, 89, 82, 0.2);
  outline: 0;
}

.consent-category {
  display: grid;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(97, 89, 82, 0.14);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
}

.consent-category h3 {
  margin: 0;
  color: var(--color-brown-deep);
  font-family: var(--font-accent);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.consent-category p {
  max-width: 55ch;
  margin: 0.28rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
}

.consent-switch {
  position: relative;
  display: block;
  width: 3.2rem;
  height: 1.72rem;
  flex: 0 0 auto;
}

.consent-switch input {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.consent-switch-track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #c9c3bd;
  box-shadow: inset 0 0 0 1px rgba(48, 44, 41, 0.13);
  transition: background 180ms ease;
}

.consent-switch-track::after {
  position: absolute;
  top: 0.22rem;
  left: 0.22rem;
  width: 1.28rem;
  height: 1.28rem;
  border-radius: 50%;
  content: "";
  background: var(--color-white);
  box-shadow: 0 2px 7px rgba(48, 44, 41, 0.24);
  transition: transform 180ms ease;
}

.consent-switch input:checked + .consent-switch-track {
  background: var(--color-green-dark);
}

.consent-switch input:checked + .consent-switch-track::after {
  transform: translateX(1.48rem);
}

.consent-switch input:focus-visible + .consent-switch-track {
  outline: 3px solid var(--color-green-olive);
  outline-offset: 3px;
}

.consent-switch.is-required {
  opacity: 0.72;
}

.consent-save,
.legal-consent-button {
  margin-top: 0.85rem;
  background: var(--color-brown);
}

.legal-dialog {
  display: grid;
  height: min(88vh, 52rem);
  height: min(88dvh, 52rem);
  overflow: hidden;
  border-radius: 0.35rem;
  grid-template-rows: auto minmax(0, 1fr);
}

.legal-dialog-header {
  display: flex;
  min-height: 6.5rem;
  padding: 1.35rem clamp(1.25rem, 3vw, 2.4rem);
  border-bottom: 1px solid rgba(97, 89, 82, 0.15);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--color-green-light);
}

.legal-dialog-header > div {
  min-width: 0;
}

.legal-dialog h2 {
  font-size: clamp(1.55rem, 2.3vw, 2.1rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.legal-dialog-layout {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(10.5rem, 14.5rem) minmax(0, 1fr);
}

.legal-navigation {
  display: flex;
  padding: 1.4rem 1.1rem;
  border-right: 1px solid rgba(97, 89, 82, 0.14);
  flex-direction: column;
  gap: 0.35rem;
  background: rgba(209, 219, 195, 0.32);
}

.legal-navigation button {
  position: relative;
  width: 100%;
  padding: 0.76rem 0.85rem;
  border: 0;
  border-radius: 0.18rem;
  outline: 0;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  font-family: var(--font-copy);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.055em;
  text-align: left;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.legal-navigation button.is-active {
  background: var(--color-green-dark);
  color: var(--color-white);
}

.legal-scroll {
  min-height: 0;
  padding: clamp(1.45rem, 3vw, 2.75rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.legal-panel {
  max-width: 49rem;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.legal-panel h3 {
  max-width: 24ch;
  margin-bottom: 1.15rem;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  line-height: 1.08;
}

.legal-panel h4 {
  margin: 1.65rem 0 0.5rem;
  color: var(--color-green-dark);
  font-family: var(--font-accent);
  font-size: 0.87rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.legal-panel p,
.legal-address {
  margin: 0.6rem 0 0;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.62;
}

.legal-panel a {
  color: var(--color-green-dark);
  text-decoration-color: rgba(85, 99, 66, 0.45);
  text-underline-offset: 0.18em;
}

.legal-updated {
  color: var(--color-taupe);
  font-size: 0.76rem !important;
  letter-spacing: 0.04em;
}

.legal-contact-actions {
  display: flex;
  margin-top: 1.4rem;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-contact-actions a {
  display: inline-flex;
  min-height: 2.75rem;
  padding: 0.65rem 1.15rem;
  border-radius: 1.5rem;
  align-items: center;
  background: var(--color-taupe);
  color: var(--color-white);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-decoration: none;
}

.cookie-table-wrap {
  margin-top: 1.3rem;
  overflow-x: auto;
  border: 1px solid rgba(97, 89, 82, 0.16);
  overscroll-behavior-x: contain;
}

.cookie-table {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: left;
}

.cookie-table th,
.cookie-table td {
  padding: 0.72rem 0.8rem;
  border-bottom: 1px solid rgba(97, 89, 82, 0.13);
  vertical-align: top;
}

.cookie-table th {
  background: var(--color-green-light);
  color: var(--color-brown-deep);
  font-family: var(--font-accent);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.cookie-table tr:last-child td {
  border-bottom: 0;
}

.cookie-table code {
  color: var(--color-brown-deep);
  font-size: 0.74rem;
}

.scroll-sequence {
  width: 100%;
  height: 100vh;
  height: 100dvh;
}

.stage {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: var(--color-green-deep);
  isolation: isolate;
}

.stage::before {
  position: absolute;
  z-index: 8;
  inset: 0;
  pointer-events: none;
  content: "";
  background: rgba(42, 49, 33, 0.97);
  opacity: 0;
  transition: opacity 240ms ease;
}

.stage.is-returning-home::before {
  opacity: 1;
}

.stage::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(
      ellipse at 54% 43%,
      transparent 38%,
      rgba(42, 49, 33, 0.07) 62%,
      rgba(42, 49, 33, 0.36) 100%
    ),
    linear-gradient(
      90deg,
      rgba(48, 44, 41, 0.58) 0%,
      rgba(48, 44, 41, 0.32) 30%,
      rgba(48, 44, 41, 0.07) 58%,
      transparent 76%
    ),
    linear-gradient(
      180deg,
      rgba(42, 49, 33, 0.08) 0%,
      transparent 42%,
      rgba(48, 44, 41, 0.4) 100%
    );
}

.media-stack,
.station-poster,
.transition-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.media-stack {
  z-index: 1;
  overflow: hidden;
  background: var(--color-green-deep);
}

.station-poster,
.transition-video {
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.station-poster {
  z-index: 1;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(1);
  transition: opacity 120ms linear;
}

.station-poster.is-active {
  opacity: 1;
}

.station-poster.is-handoff-ready {
  opacity: 1;
  transition: none;
}

.transition-video {
  z-index: 2;
  display: block;
  background: transparent;
  opacity: 0;
  transition: opacity 190ms linear;
}

.transition-video.is-visible {
  opacity: 1;
}

.transition-video.is-resetting {
  visibility: hidden;
  opacity: 0;
  transition: none;
}

.apartment-hotspot-map {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.7778vh);
  height: max(100vh, 56.25vw);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    opacity 180ms linear,
    visibility 0s linear;
}

.apartment-hotspot-map[hidden] {
  display: none;
}

.apartment-hotspot {
  position: absolute;
  display: flex;
  padding: 0;
  align-items: center;
  gap: 0.7rem;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  pointer-events: auto;
  transform: translate(-1.7rem, -50%);
  transition:
    opacity 220ms ease,
    visibility 0s linear;
}

.apartment-hotspot.is-media-pending {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.apartment-hotspot[data-apartment-open="w3"] {
  top: 69%;
  left: 73%;
}

.apartment-hotspot[data-apartment-open="w7"] {
  top: 48%;
  left: 37%;
}

.apartment-hotspot-marker {
  position: relative;
  display: grid;
  width: clamp(3.15rem, 3.7vw, 3.85rem);
  flex: none;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(42, 49, 33, 0.78);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 12px 34px rgba(48, 44, 41, 0.38);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
  animation: apartment-hotspot-breathe 2.8s ease-in-out infinite;
}

.apartment-hotspot-marker::before {
  position: absolute;
  inset: 0.32rem;
  border: 1px solid rgba(209, 219, 195, 0.28);
  border-radius: inherit;
  content: "";
}

.apartment-hotspot-marker::after {
  position: absolute;
  inset: -0.08rem;
  border: 1px solid rgba(209, 219, 195, 0.68);
  border-radius: inherit;
  content: "";
  animation: apartment-hotspot-ring 2.8s ease-out infinite;
}

.apartment-hotspot-arrow {
  position: relative;
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  transform: rotate(-35deg);
}

.apartment-hotspot-arrow::before {
  position: absolute;
  top: 50%;
  left: 0.02rem;
  width: 1.02rem;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translateY(-50%);
}

.apartment-hotspot-arrow::after {
  position: absolute;
  top: calc(50% - 0.23rem);
  right: 0.03rem;
  width: 0.46rem;
  height: 0.46rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.apartment-hotspot-copy {
  display: flex;
  min-width: max-content;
  padding: 0.56rem 0.9rem 0.52rem;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.15rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 2rem;
  background: rgba(48, 44, 41, 0.64);
  box-shadow: 0 8px 24px rgba(48, 44, 41, 0.24);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  text-align: left;
  text-shadow: 0 1px 9px rgba(48, 44, 41, 0.65);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.apartment-hotspot-kicker {
  color: var(--color-green-light);
  font-family: var(--font-accent);
  font-size: clamp(0.51rem, 0.57vw, 0.59rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.apartment-hotspot-label {
  font-family: var(--font-copy);
  font-size: clamp(0.66rem, 0.75vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.065em;
  line-height: 1.15;
  text-transform: uppercase;
}

.apartment-hotspot:focus-visible .apartment-hotspot-marker {
  outline: 2px solid var(--color-white);
  outline-offset: 5px;
  box-shadow:
    0 0 0 6px rgba(42, 49, 33, 0.68),
    0 12px 34px rgba(48, 44, 41, 0.38);
}

.apartment-hotspot:disabled {
  cursor: default;
  pointer-events: none;
}

.stage.is-in-motion .apartment-hotspot-map,
.stage.is-returning-home .apartment-hotspot-map {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.apartment-preview-layer {
  position: fixed;
  z-index: 90;
  inset: 0;
  overflow: hidden;
  background: var(--color-green-deep);
  opacity: 0;
  touch-action: none;
  visibility: hidden;
  transition:
    opacity 150ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 150ms;
}

.apartment-preview-layer[hidden] {
  display: none;
}

.apartment-preview-layer.is-open {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 150ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear;
}

.apartment-preview-dialog,
.apartment-origin-poster,
.apartment-preview-media,
.apartment-entry-video,
.apartment-exit-video,
.apartment-end-poster,
.apartment-preview-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.apartment-preview-media[hidden] {
  display: none;
}

.apartment-preview-dialog {
  overflow: hidden;
  outline: 0;
  background: var(--color-green-deep);
}

.apartment-origin-poster,
.apartment-entry-video,
.apartment-exit-video,
.apartment-end-poster {
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.apartment-origin-poster {
  z-index: 1;
  filter: blur(0) brightness(1);
  transition:
    transform 1250ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 850ms ease;
  will-change: transform, filter;
}

.apartment-preview-layer.is-launching:not(.has-first-frame)
  .apartment-origin-poster {
  filter: blur(1.2px) brightness(0.94);
  transform: translateZ(0) scale(1.028);
}

.apartment-entry-video {
  z-index: 2;
  display: block;
  border: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 90ms linear;
}

.apartment-exit-video {
  z-index: 4;
  display: block;
  border: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 90ms linear;
}

.apartment-preview-layer.has-exit-frame .apartment-exit-video {
  opacity: 1;
}

.apartment-preview-layer.is-apartment-exiting .apartment-entry-video {
  opacity: 0;
}

.apartment-preview-layer.has-first-frame .apartment-entry-video {
  opacity: 1;
}

.apartment-end-poster {
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 380ms ease;
}

.apartment-preview-layer.is-arrived .apartment-end-poster {
  opacity: 1;
}

.apartment-preview-shade {
  z-index: 4;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at center,
      transparent 48%,
      rgba(42, 49, 33, 0.12) 76%,
      rgba(42, 49, 33, 0.34) 100%
    ),
    linear-gradient(
      180deg,
      rgba(48, 44, 41, 0.22) 0%,
      transparent 28%,
      transparent 70%,
      rgba(48, 44, 41, 0.28) 100%
    );
}

.apartment-preview-close {
  position: absolute;
  z-index: 6;
  top: clamp(1rem, 2.5vw, 2.25rem);
  left: clamp(1rem, 2.5vw, 2.75rem);
  display: inline-flex;
  min-height: 2.55rem;
  padding: 0.58rem 1rem 0.54rem 0.72rem;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 1.6rem;
  outline: 0;
  background: rgba(48, 44, 41, 0.68);
  box-shadow: 0 9px 28px rgba(48, 44, 41, 0.28);
  color: var(--color-white);
  cursor: pointer;
  font-family: var(--font-copy);
  font-size: clamp(0.62rem, 0.7vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.105em;
  line-height: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.apartment-preview-close-symbol {
  font-family: var(--font-ui);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 0.7;
}

.apartment-preview-close:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 4px;
}

.apartment-preview-loading,
.apartment-preview-arrival {
  position: absolute;
  z-index: 5;
  display: flex;
  color: var(--color-white);
  text-shadow: 0 2px 16px rgba(48, 44, 41, 0.68);
}

.apartment-preview-loading {
  right: 0;
  bottom: clamp(2rem, 5vh, 4.5rem);
  left: 0;
  align-items: center;
  flex-direction: column;
  gap: 0.32rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms linear;
}

.apartment-preview-layer.is-waiting .apartment-preview-loading {
  opacity: 1;
}

.apartment-preview-layer.has-first-frame .apartment-preview-loading {
  opacity: 0;
}

.apartment-preview-layer.is-unavailable .apartment-preview-loading {
  opacity: 1;
}

.apartment-preview-layer.is-unavailable
  .apartment-preview-loading-line {
  display: none;
}

.apartment-preview-loading-kicker,
.apartment-preview-arrival-kicker {
  color: var(--color-green-light);
  font-family: var(--font-accent);
  font-size: clamp(0.57rem, 0.64vw, 0.66rem);
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1;
  text-transform: uppercase;
}

.apartment-preview-loading-label {
  font-family: var(--font-copy);
  font-size: clamp(0.68rem, 0.78vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.apartment-preview-loading-line {
  position: relative;
  width: min(8rem, 28vw);
  height: 1px;
  margin-top: 0.5rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.apartment-preview-loading-line::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 48%;
  height: 100%;
  content: "";
  background: var(--color-green-light);
  animation: apartment-loading-line 1.35s ease-in-out infinite;
}

.apartment-preview-arrival {
  bottom: clamp(2rem, 5vh, 4.5rem);
  left: clamp(1.25rem, 5vw, 6rem);
  align-items: flex-start;
  flex-direction: column;
  gap: 0.42rem;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 420ms 260ms ease,
    transform 480ms 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.apartment-preview-arrival::before {
  width: clamp(3.5rem, 6vw, 6rem);
  height: 1px;
  margin-bottom: 0.45rem;
  content: "";
  background: rgba(209, 219, 195, 0.86);
}

.apartment-preview-arrival-title {
  font-family: var(--font-copy);
  font-size: clamp(1.65rem, 3vw, 3.25rem);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.05;
}

.apartment-preview-layer.is-arrived .apartment-preview-arrival {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.apartment-preview-layer.is-unavailable .apartment-preview-loading-label {
  max-width: min(28rem, 82vw);
  text-align: center;
}

@keyframes apartment-hotspot-breathe {
  0%,
  100% {
    transform: translateZ(0) scale(1);
  }

  50% {
    transform: translateZ(0) scale(1.035);
  }
}

@keyframes apartment-hotspot-ring {
  0% {
    opacity: 0;
    transform: scale(0.94);
  }

  30% {
    opacity: 0.48;
  }

  100% {
    opacity: 0;
    transform: scale(1.32);
  }
}

@keyframes apartment-loading-line {
  0% {
    transform: translateX(-110%);
  }

  55%,
  100% {
    transform: translateX(225%);
  }
}

.journey-controls {
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 160ms linear,
    visibility 0s linear;
}

.stage.is-in-motion .journey-controls {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.tour-exit {
  position: absolute;
  z-index: 6;
  top: calc(var(--site-chrome-top) + clamp(0.85rem, 2vh, 1.35rem));
  left: clamp(1rem, 2.4vw, 2.75rem);
  display: inline-flex;
  min-height: 2.35rem;
  padding: 0.55rem 1rem 0.5rem 0.75rem;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 1.5rem;
  outline: 0;
  background: rgba(145, 133, 122, 0.92);
  box-shadow: 0 7px 24px rgba(48, 44, 41, 0.25);
  color: var(--color-white);
  cursor: pointer;
  font-family: var(--font-copy);
  font-size: clamp(0.66rem, 0.76vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1;
  opacity: 1;
  pointer-events: auto;
  transition:
    color 160ms ease,
    background 160ms ease,
    opacity 160ms linear,
    transform 160ms ease,
    visibility 0s linear;
}

.tour-exit[hidden] {
  display: none;
}

.tour-exit-symbol {
  font-family: var(--font-ui);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 0.7;
}

.stage.is-in-motion .tour-exit,
.stage.is-returning-home .tour-exit {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.tour-exit:disabled {
  cursor: default;
  pointer-events: none;
}

.tour-exit:focus-visible {
  outline: 3px solid var(--color-white);
  outline-offset: 4px;
}

.tour-ai-badge {
  position: absolute;
  z-index: 6;
  top: calc(var(--site-chrome-top) + clamp(0.9rem, 2vh, 1.35rem));
  right: clamp(1rem, 2.4vw, 2.75rem);
  margin: 0;
  padding: 0.42rem 0.66rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(32, 37, 28, 0.48);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-copy);
  font-size: clamp(0.56rem, 0.65vw, 0.65rem);
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-0.3rem);
  visibility: hidden;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition:
    opacity 160ms linear,
    transform 160ms ease,
    visibility 0s linear 160ms;
}

.journey-controls[data-station="2"] ~ .tour-ai-badge[data-tour-ai-badge="2"],
.journey-controls[data-station="4"] ~ .tour-ai-badge[data-tour-ai-badge="4"] {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition:
    opacity 160ms linear,
    transform 160ms ease,
    visibility 0s linear;
}

.stage.is-in-motion .tour-ai-badge,
.stage.is-returning-home .tour-ai-badge {
  opacity: 0;
  visibility: hidden;
}

.journey-arrow {
  position: absolute;
  display: grid;
  width: clamp(3.05rem, 3.55vw, 3.75rem);
  aspect-ratio: 1;
  overflow: visible;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  outline: 0;
  background: rgba(48, 44, 41, 0.74);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 10px 30px rgba(48, 44, 41, 0.3);
  color: var(--color-white);
  cursor: pointer;
  pointer-events: auto;
  transform: translateZ(0) scale(1);
  will-change: transform;
  animation: journey-arrow-breathe 3s ease-in-out infinite;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.journey-arrow[hidden] {
  display: none;
}

.journey-arrow::before {
  position: absolute;
  inset: 0.32rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.journey-arrow::after {
  position: absolute;
  inset: -0.06rem;
  border: 1px solid rgba(194, 178, 163, 0.54);
  border-radius: inherit;
  content: "";
  pointer-events: none;
  animation: journey-arrow-ring 3s ease-out infinite;
}

.journey-arrow.is-reverse {
  width: clamp(3.05rem, 3.55vw, 3.75rem);
  border-color: rgba(209, 219, 195, 0.64);
  background: rgba(42, 49, 33, 0.76);
  color: var(--color-white);
}

.journey-arrow.is-reverse::after {
  border-color: rgba(209, 219, 195, 0.52);
}

.journey-arrow:disabled {
  cursor: default;
  pointer-events: none;
}

.journey-arrow:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 5px;
  box-shadow:
    0 0 0 6px rgba(42, 49, 33, 0.74),
    0 10px 30px rgba(48, 44, 41, 0.3);
}

.journey-arrow-symbol {
  display: block;
  position: relative;
  width: 1.15rem;
  height: 1.15rem;
  font-size: 0;
  transform: rotate(var(--arrow-angle, 0deg));
  transform-origin: center;
}

.journey-arrow-symbol::before {
  position: absolute;
  top: 50%;
  left: 0.03rem;
  width: 1.02rem;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translateY(-50%);
}

.journey-arrow-symbol::after {
  position: absolute;
  top: calc(50% - 0.23rem);
  right: 0.04rem;
  width: 0.46rem;
  height: 0.46rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.journey-arrow-label {
  position: absolute;
  top: 50%;
  min-width: max-content;
  padding: 0.46rem 0.7rem 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 2rem;
  background: rgba(48, 44, 41, 0.58);
  box-shadow: 0 6px 20px rgba(48, 44, 41, 0.18);
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-copy);
  font-size: clamp(0.58rem, 0.66vw, 0.68rem);
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1;
  pointer-events: none;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(48, 44, 41, 0.55);
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    border-color 180ms ease;
  white-space: nowrap;
}

.journey-arrow.is-forward .journey-arrow-label {
  right: calc(100% + 0.65rem);
}

.journey-arrow.is-reverse .journey-arrow-label {
  left: calc(100% + 0.65rem);
}

.journey-controls[data-station="1"]
  .journey-arrow.is-reverse
  .journey-arrow-label,
.journey-controls[data-station="4"]
  .journey-arrow.is-reverse
  .journey-arrow-label,
.journey-controls[data-station="5"]
  .journey-arrow.is-reverse
  .journey-arrow-label {
  right: calc(100% + 0.65rem);
  left: auto;
}

.journey-arrow[data-vector="right"] {
  --arrow-angle: 0deg;
}

.journey-arrow[data-vector="down"] {
  --arrow-angle: 90deg;
}

.journey-arrow[data-vector="left"] {
  --arrow-angle: 180deg;
}

.journey-arrow[data-vector="up"] {
  --arrow-angle: -90deg;
}

.journey-arrow[data-vector="up-right"] {
  --arrow-angle: -45deg;
}

.journey-arrow[data-vector="down-left"] {
  --arrow-angle: 135deg;
}

.journey-controls[data-station="0"] .is-forward {
  top: calc(var(--site-chrome-top) + clamp(1rem, 2.5vh, 2rem));
  left: 50%;
  translate: -50% 0;
}

.journey-controls[data-station="1"] .is-forward {
  top: 47%;
  right: clamp(2rem, 4.5vw, 5.5rem);
  translate: 0 -50%;
}

.journey-controls[data-station="1"] .is-reverse {
  bottom: calc(var(--site-footer-height) + clamp(1rem, 3vh, 2.5rem));
  right: clamp(2rem, 4.5vw, 5.5rem);
  left: auto;
  translate: 0;
}

.journey-controls[data-station="2"] .is-forward {
  bottom: calc(var(--site-footer-height) + clamp(1rem, 3vh, 2.5rem));
  left: 70%;
  translate: -50% 0;
}

.journey-controls[data-station="2"] .is-reverse {
  top: 47%;
  left: clamp(2rem, 4.5vw, 5.5rem);
  translate: 0 -50%;
}

.journey-controls[data-station="3"] .is-forward {
  top: 34%;
  left: 86%;
  translate: -50% -50%;
}

.journey-controls[data-station="3"] .is-reverse {
  top: calc(var(--site-chrome-top) + clamp(1rem, 2.5vh, 2rem));
  left: 50%;
  translate: -50% 0;
}

.journey-controls[data-station="4"] .is-reverse {
  top: auto;
  bottom: calc(var(--site-footer-height) + clamp(1rem, 3vh, 2.5rem));
  left: 91%;
  translate: -50% 0;
}

.journey-controls[data-station="4"] .is-forward {
  top: 18%;
  right: clamp(2rem, 4.5vw, 5.5rem);
  translate: 0 -50%;
}

.journey-controls[data-station="5"] .is-reverse {
  top: auto;
  bottom: calc(var(--site-footer-height) + clamp(1rem, 3vh, 2.5rem));
  left: 91%;
  translate: -50% 0;
}

.scroll-cue {
  position: absolute;
  z-index: 6;
  top: 50%;
  bottom: auto;
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.1rem;
  color: var(--color-white);
  filter: drop-shadow(0 2px 7px rgba(48, 44, 41, 0.72));
  opacity: 0;
  pointer-events: none;
  translate: -50% -50%;
  visibility: hidden;
  will-change: opacity, transform;
}

.scroll-cue[hidden] {
  display: none;
}

.scroll-cue.is-prompting {
  visibility: visible;
  animation: scroll-cue-reminder 10s ease-in-out infinite both;
}

.scroll-cue.is-prompting.is-end-reminder {
  animation-delay: 4s;
}

.scroll-cue-label {
  font-family: "Poppins HH", Poppins, var(--font-copy);
  font-size: clamp(0.58rem, 0.68vw, 0.72rem);
  font-weight: 200;
  letter-spacing: 0.14em;
  line-height: 1;
  text-shadow: 0 1px 8px rgba(48, 44, 41, 0.5);
}

.scroll-cue-arrows {
  display: flex;
  height: 0.9rem;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.scroll-cue[data-scroll-direction="forward"] .scroll-cue-arrows {
  order: -1;
}

.scroll-cue-chevron {
  display: block;
  width: 0.46rem;
  height: 0.46rem;
  margin-top: -0.08rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: 0.28;
  transform: rotate(45deg);
  animation: scroll-cue-chevron-flow 1.15s ease-in-out infinite;
}

.scroll-cue-chevron:nth-child(2) {
  animation-delay: 120ms;
}

.scroll-cue-chevron:nth-child(3) {
  animation-delay: 240ms;
}

.scroll-cue[data-scroll-direction="forward"] .scroll-cue-chevron {
  animation-direction: reverse;
  transform: rotate(-135deg);
}

.stage.is-in-motion .scroll-cue,
.stage.is-returning-home .scroll-cue {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes journey-arrow-breathe {
  0%,
  100% {
    transform: translateZ(0) scale(1);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.16) inset,
      0 10px 30px rgba(48, 44, 41, 0.3);
  }

  50% {
    transform: translateZ(0) scale(1.018);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.2) inset,
      0 12px 34px rgba(48, 44, 41, 0.34),
      0 0 18px rgba(194, 178, 163, 0.16);
  }
}

@keyframes journey-arrow-ring {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }

  34% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    transform: scale(1.27);
  }
}

@keyframes scroll-cue-reminder {
  0% {
    opacity: 0;
    transform: translateY(5px);
  }

  6%,
  30% {
    opacity: 1;
    transform: translateY(0);
  }

  36%,
  100% {
    opacity: 0;
    transform: translateY(2px);
  }
}

@keyframes scroll-cue-chevron-flow {
  0%,
  100% {
    opacity: 0.22;
    translate: 0 -1px;
  }

  45% {
    opacity: 1;
    translate: 0 1px;
  }
}

@media (hover: hover) {
  .site-navigation-item:not(:disabled):hover {
    opacity: 0.76;
  }

  button.footer-navigation-item:hover::after {
    transform: scaleX(1);
  }

  .dialog-close:hover {
    border-color: var(--color-green-dark);
    background: var(--color-green-dark);
    color: var(--color-white);
    transform: rotate(4deg);
  }

  .consent-choice:hover,
  .consent-save:hover,
  .legal-consent-button:hover,
  .legal-contact-actions a:hover {
    background: var(--color-beige);
    color: var(--color-brown-deep);
    transform: translateY(-2px);
  }

  .legal-navigation button:not(.is-active):hover {
    background: rgba(171, 184, 153, 0.32);
  }

  .chapter-action.is-apartments:hover {
    background: #677e82;
    transform: translateY(-2px);
  }

  .chapter-action.is-tour-start:hover {
    background: var(--color-beige);
    transform: translateY(-2px);
  }

  .chapter-action.is-contact:hover {
    background: var(--color-beige);
    transform: translateY(-2px);
  }

  .chapter-action.is-contact.is-subtle:hover {
    border-color: rgba(255, 255, 255, 0.82);
    background: rgba(171, 184, 153, 0.5);
    color: var(--color-white);
  }

  .tour-exit:hover {
    background: var(--color-beige);
    color: var(--color-brown-deep);
    transform: translateY(-2px);
  }

  .journey-arrow:hover {
    border-color: var(--color-white);
    background: rgba(145, 133, 122, 0.94);
    color: var(--color-white);
    animation: none;
    transform: translateZ(0) scale(1.045);
  }

  .journey-arrow:hover::after {
    opacity: 0;
    animation: none;
  }

  .journey-arrow.is-reverse:hover {
    background: rgba(85, 99, 66, 0.96);
    color: var(--color-white);
  }

  .journey-arrow:hover .journey-arrow-label {
    border-color: rgba(255, 255, 255, 0.48);
    background: rgba(48, 44, 41, 0.78);
  }

  .apartment-hotspot:hover .apartment-hotspot-marker {
    border-color: var(--color-white);
    background: rgba(145, 133, 122, 0.94);
    animation: none;
    transform: translateZ(0) scale(1.055);
  }

  .apartment-hotspot:hover .apartment-hotspot-marker::after {
    opacity: 0;
    animation: none;
  }

  .apartment-hotspot:hover .apartment-hotspot-copy {
    border-color: rgba(255, 255, 255, 0.56);
    background: rgba(48, 44, 41, 0.8);
    transform: translateX(3px);
  }

  .apartment-preview-close:hover {
    border-color: rgba(255, 255, 255, 0.74);
    background: var(--color-taupe);
    transform: translateY(-2px);
  }

}

.copy-layer {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
  color: var(--color-white);
}

.chapter {
  position: absolute;
  left: clamp(2.5rem, 7vw, 8.5rem);
  bottom: calc(var(--site-footer-height) + clamp(2rem, 6vh, 5rem));
  width: min(78rem, 88vw);
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  text-shadow:
    0 4px 34px rgba(48, 44, 41, 0.62),
    0 1px 4px rgba(48, 44, 41, 0.78);
  transition:
    opacity 180ms linear,
    transform 220ms ease-out;
}

.chapter.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 380ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.chapter.is-leaving {
  opacity: 0;
  transform: translate3d(0, -8px, 0);
}

.chapter::before {
  display: block;
  width: clamp(4rem, 7vw, 7rem);
  height: 1px;
  margin-bottom: 1.25rem;
  content: "";
  background: rgba(209, 219, 195, 0.82);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease-out;
}

.chapter.is-active::before {
  transform: scaleX(1);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.chapter-kicker,
.chapter-title,
.chapter-description {
  margin: 0;
}

.chapter-kicker {
  margin-bottom: 0.85rem;
  color: var(--color-green-light);
  font-family: var(--font-accent);
  font-size: clamp(0.74rem, 0.85vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.chapter-title {
  max-width: min(21ch, 82vw);
  color: var(--color-white);
  font-family: var(--font-copy);
  font-size: clamp(2.25rem, 3.85vw, 4.55rem);
  font-weight: 300;
  letter-spacing: -0.018em;
  line-height: 1.04;
  text-wrap: balance;
}

.chapter:first-child {
  width: min(72rem, 88vw);
}

.chapter:first-child .chapter-title {
  max-width: min(19ch, 82vw);
  font-size: clamp(2.25rem, 3.75vw, 4.45rem);
  line-height: 1.04;
}

.chapter-project {
  bottom: calc(var(--site-footer-height) + clamp(1.1rem, 3vh, 2.4rem));
  width: min(76rem, 88vw);
}

.chapter-project::before {
  margin-bottom: 0.8rem;
}

.chapter-project .chapter-kicker {
  margin-bottom: 0.55rem;
}

.chapter-project .chapter-title {
  max-width: min(25ch, 82vw);
  font-size: clamp(1.95rem, 2.85vw, 3.25rem);
  line-height: 1.05;
}

.chapter-project .chapter-description {
  max-width: 59rem;
  margin-top: 0.8rem;
  font-size: clamp(0.88rem, 1.05vw, 1.08rem);
  line-height: 1.4;
}

.project-detail-grid {
  display: grid;
  max-width: 68rem;
  margin-top: clamp(0.8rem, 1.8vh, 1.15rem);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(0.75rem, 1.6vw, 1.35rem);
}

.project-side {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 0.62rem;
}

.project-architect {
  padding: 0.8rem 1rem 0.85rem;
  border-left: 3px solid var(--color-green);
  background: rgba(48, 44, 41, 0.48);
  box-shadow: 0 8px 28px rgba(48, 44, 41, 0.16);
  text-shadow:
    0 2px 18px rgba(48, 44, 41, 0.55),
    0 1px 3px rgba(48, 44, 41, 0.72);
}

.project-architect-claim,
.project-architect-name,
.project-architect-copy {
  margin: 0;
}

.project-architect-claim {
  max-width: 52ch;
  font-family: var(--font-copy);
  font-size: clamp(0.96rem, 1.14vw, 1.14rem);
  font-weight: 400;
  letter-spacing: -0.008em;
  line-height: 1.28;
}

.project-architect-name {
  margin-top: 0.32rem;
  color: var(--color-green-light);
  font-family: var(--font-accent);
  font-size: clamp(0.57rem, 0.66vw, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.project-architect-copy {
  max-width: 82ch;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-copy);
  font-size: clamp(0.73rem, 0.83vw, 0.86rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.38;
}

.project-certifications {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.project-seal {
  position: relative;
  flex: none;
  overflow: hidden;
  text-shadow: none;
}

.project-seal.is-dega {
  display: grid;
  width: clamp(6.4rem, 8.8vw, 7.4rem);
  aspect-ratio: 1.245;
  padding: 0.72rem 0.78rem 0.65rem;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto auto;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.18),
      transparent 28%,
      rgba(255, 255, 255, 0.1) 52%,
      transparent 74%
    ),
    linear-gradient(135deg, #c2b2a3 0%, #a89787 58%, #91857a 100%);
  box-shadow: 0 8px 26px rgba(48, 44, 41, 0.28);
  color: var(--color-brown-deep);
  line-height: 1;
  text-align: left;
}

.project-seal.is-dega::before {
  position: absolute;
  inset: 0.3rem;
  border: 1px solid rgba(48, 44, 41, 0.3);
  content: "";
}

.project-seal.is-dega strong,
.dega-label,
.dega-class,
.dega-grade {
  position: relative;
  z-index: 1;
}

.dega-label {
  grid-column: 1 / -1;
  padding-bottom: 0.22rem;
  border-bottom: 1px solid rgba(48, 44, 41, 0.3);
  font-family: var(--font-accent);
  font-size: clamp(0.3rem, 0.38vw, 0.36rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-seal.is-dega strong {
  margin-top: 0.32rem;
  font-family: var(--font-accent);
  font-size: clamp(0.66rem, 0.82vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.dega-class {
  margin-top: 0.12rem;
  font-family: var(--font-copy);
  font-size: clamp(0.28rem, 0.35vw, 0.34rem);
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.dega-grade {
  grid-row: 2 / 4;
  grid-column: 2;
  align-self: center;
  margin: 0.26rem 0 0 0.48rem;
  font-family: var(--font-copy);
  font-size: clamp(2rem, 2.65vw, 2.45rem);
  font-weight: 300;
  letter-spacing: -0.06em;
}

.project-seal.is-climate {
  width: clamp(6.4rem, 8.8vw, 7.4rem);
  aspect-ratio: 1.245;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #d7c47b;
  box-shadow: 0 8px 26px rgba(48, 44, 41, 0.28);
}

.project-seal.is-climate img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 179%;
  max-width: none;
  height: auto;
  transform: translate(-21.7%, -12%);
}

.chapter-description {
  max-width: 46rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-copy);
  font-size: clamp(1.08rem, 1.35vw, 1.48rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.45;
  text-wrap: balance;
}

.chapter-availability {
  color: var(--color-green-light);
  font-family: var(--font-accent);
  font-weight: 600;
}

.chapter-actions {
  display: flex;
  margin-top: clamp(1.25rem, 2.7vh, 2rem);
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 8px, 0);
  visibility: hidden;
  transition:
    opacity 180ms linear,
    transform 220ms ease,
    visibility 0s linear 220ms;
}

.chapter.is-active .chapter-actions {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  visibility: visible;
  transition:
    opacity 380ms 120ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms 120ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear;
}

.stage.is-in-motion .chapter-actions {
  pointer-events: none;
}

.chapter-action {
  display: inline-flex;
  min-height: 2.9rem;
  padding: 0.72rem 1.45rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 0;
  border-radius: 1.5rem;
  outline: 0;
  box-shadow: 0 8px 28px rgba(48, 44, 41, 0.26);
  color: var(--color-white);
  cursor: pointer;
  font-family: var(--font-copy);
  font-size: clamp(0.75rem, 0.9vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.chapter-action.is-apartments {
  background: #9aa9ac;
}

.chapter-action.is-tour-start {
  background: var(--color-taupe);
}

.chapter-action.is-contact {
  background: var(--color-taupe);
}

.chapter-action.is-contact.is-subtle {
  min-height: 2.48rem;
  padding: 0.58rem 1.08rem;
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: rgba(48, 44, 41, 0.3);
  box-shadow: 0 5px 18px rgba(48, 44, 41, 0.16);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  font-size: clamp(0.67rem, 0.76vw, 0.78rem);
  letter-spacing: 0.07em;
}

.is-project-actions {
  margin-top: 0;
  justify-content: flex-end;
}

@media (min-width: 900px) and (max-width: 1100px) {
  .project-side {
    padding-bottom: 3.25rem;
  }

  .is-project-actions {
    order: -1;
  }
}

.chapter-action:disabled {
  cursor: default;
  pointer-events: none;
}

.chapter-action:focus-visible {
  outline: 3px solid var(--color-white);
  outline-offset: 4px;
}

.chapter-action-arrow {
  font-family: var(--font-ui);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 0.7;
}

@media (max-width: 899px) {
  :root {
    --header-main-height: 3rem;
    --energy-strip-height: 2.9rem;
    --site-footer-height: 4.35rem;
  }

  .consent-layer,
  .legal-layer {
    padding: 0.8rem;
  }

  .legal-dialog {
    height: min(94vh, 52rem);
    height: min(94dvh, 52rem);
  }

  .site-header-main {
    padding: 0 0.75rem;
    grid-template-columns: minmax(7.5rem, 0.8fr) minmax(0, 1.7fr) auto;
    gap: 0.5rem;
  }

  .site-navigation {
    gap: clamp(0.32rem, 1vw, 0.58rem);
  }

  .site-wordmark {
    width: clamp(7.4rem, 14.5vw, 9.2rem);
  }

  .site-navigation-item {
    font-size: clamp(0.48rem, 1.15vw, 0.58rem);
  }

  .site-language {
    font-size: 0.62rem;
  }

  .energy-strip {
    padding: 0.5rem 0.75rem;
    font-size: clamp(0.54rem, 2.15vw, 0.65rem);
  }

  .footer-navigation {
    padding: 0.65rem 1rem;
    flex-wrap: wrap;
    align-content: center;
    gap: 0.45rem 1rem;
  }

  .footer-navigation-item {
    font-size: 0.58rem;
  }

  .tour-exit {
    top: calc(var(--site-chrome-top) + 0.8rem);
    left: 1rem;
    min-height: 2.1rem;
    padding: 0.45rem 0.8rem 0.4rem 0.65rem;
    font-size: 0.61rem;
  }

  .chapter:first-child {
    left: clamp(1rem, 5vw, 2.5rem);
    bottom: calc(var(--site-footer-height) + clamp(1.1rem, 4vh, 2.5rem));
    width: min(39rem, calc(100vw - 2rem));
  }

  .chapter:first-child::before {
    width: 3.25rem;
    margin-bottom: 0.75rem;
  }

  .chapter:first-child .chapter-kicker {
    margin-bottom: 0.55rem;
    font-size: clamp(0.58rem, 1.65vw, 0.72rem);
  }

  .chapter:first-child .chapter-title {
    max-width: 19ch;
    font-size: clamp(1.85rem, 4.7vw, 2.5rem);
    line-height: 1.05;
  }

  .chapter:first-child .chapter-description {
    max-width: 34rem;
    margin-top: 0.85rem;
    font-size: clamp(0.82rem, 2vw, 1rem);
    line-height: 1.35;
  }

  .chapter-actions {
    margin-top: 1rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
  }

  .chapter-final .chapter-actions {
    align-items: center;
    flex-direction: row;
  }

  .chapter-action {
    width: min(100%, 21rem);
    min-height: 2.55rem;
    padding: 0.62rem 1rem;
    font-size: clamp(0.66rem, 1.7vw, 0.78rem);
  }

  .chapter-final .chapter-action {
    width: auto;
  }

  .project-side {
    align-items: flex-start;
  }

  .is-project-actions {
    width: 100%;
  }

  .apartment-hotspot-marker {
    width: 3.05rem;
  }

  .apartment-hotspot {
    transform: translate(-1.525rem, -50%);
  }

  .apartment-hotspot-copy {
    position: absolute;
    bottom: calc(100% + 0.7rem);
    left: 50%;
    max-width: 11.5rem;
    min-width: 0;
    padding: 0.48rem 0.72rem 0.44rem;
    align-items: center;
    border-radius: 1.25rem;
    text-align: center;
    transform: translateX(-50%);
  }

  .apartment-hotspot:hover .apartment-hotspot-copy {
    transform: translateX(-50%) translateY(-2px);
  }

  .apartment-hotspot-label {
    font-size: 0.62rem;
    line-height: 1.22;
  }

  .apartment-preview-close {
    top: 1rem;
    left: 1rem;
    min-height: 2.35rem;
    padding: 0.5rem 0.86rem 0.47rem 0.66rem;
  }

  .apartment-preview-arrival {
    bottom: 2rem;
    left: clamp(1.25rem, 4vw, 2.5rem);
  }

  .journey-arrow {
    width: 3rem;
  }

  .journey-arrow.is-reverse {
    width: 3rem;
  }

  .journey-arrow-label {
    max-width: 9.25rem;
    min-width: 0;
    padding: 0.4rem 0.58rem 0.37rem;
    font-size: 0.56rem;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .scroll-cue {
    top: 50%;
    bottom: auto;
  }

  .scroll-cue-label {
    font-size: 0.56rem;
  }

  .journey-controls[data-station="1"] .is-forward,
  .journey-controls[data-station="3"] .is-forward {
    right: 1.35rem;
    left: auto;
    translate: 0 -50%;
  }

  .journey-controls[data-station="2"] .is-reverse {
    left: 1.35rem;
  }

  .journey-controls[data-station="1"] .is-reverse,
  .journey-controls[data-station="4"] .is-reverse,
  .journey-controls[data-station="5"] .is-reverse {
    top: auto;
    right: 1.35rem;
    bottom: calc(var(--site-footer-height) + 1rem);
    left: auto;
    translate: 0;
  }

  .journey-controls[data-station="4"] .is-forward {
    top: 18%;
    right: 1.35rem;
  }
}

@media (max-width: 699px) {
  :root {
    --site-footer-height: 5.1rem;
  }

  .consent-layer,
  .legal-layer {
    padding: 0.45rem;
  }

  .consent-dialog {
    max-height: 96vh;
    max-height: 96dvh;
    padding: 1.45rem 1.05rem 1.15rem;
  }

  .consent-dialog h2 {
    max-width: 15ch;
    padding-right: 2.35rem;
    font-size: clamp(1.55rem, 7.2vw, 2.05rem);
  }

  .consent-intro {
    font-size: 0.84rem;
    line-height: 1.48;
  }

  .consent-primary-actions {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .consent-choice,
  .consent-save,
  .legal-consent-button {
    width: 100%;
  }

  .consent-category {
    gap: 0.75rem;
  }

  .legal-dialog {
    height: 97vh;
    height: 97dvh;
  }

  .legal-dialog-header {
    min-height: 5.5rem;
    padding: 1rem;
  }

  .legal-dialog h2 {
    font-size: 1.35rem;
  }

  .legal-dialog-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .legal-navigation {
    padding: 0.55rem;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(97, 89, 82, 0.14);
    flex-direction: row;
    gap: 0.25rem;
    overscroll-behavior-x: contain;
  }

  .legal-navigation button {
    width: auto;
    flex: 0 0 auto;
    padding: 0.58rem 0.72rem;
    font-size: 0.65rem;
  }

  .legal-scroll {
    padding: 1.25rem 1rem 2rem;
  }

  .legal-panel h3 {
    font-size: 1.65rem;
  }

  .legal-panel p,
  .legal-address {
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .site-header-main {
    padding: 0 1rem;
    grid-template-columns: 1fr auto;
  }

  .site-navigation {
    display: none;
  }

  .site-wordmark {
    width: 8.5rem;
  }

  .chapter:not(:first-child) {
    display: none;
  }

  .apartment-hotspot-map {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }

  .apartment-hotspot {
    top: calc(var(--site-chrome-top) + 1rem);
    right: 1rem;
    left: auto;
    transform: none;
  }

  .apartment-hotspot[data-apartment-open="w7"] {
    top: calc(var(--site-chrome-top) + 5.4rem);
    right: 1rem;
    left: auto;
  }

  .apartment-hotspot-copy {
    position: static;
    order: -1;
    align-items: flex-end;
    text-align: right;
    transform: none;
  }

  .apartment-hotspot:hover .apartment-hotspot-copy {
    transform: translateX(-3px);
  }

  .apartment-preview-arrival-title {
    font-size: clamp(1.55rem, 7vw, 2.15rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .stage::before,
  .station-poster,
  .transition-video,
  .apartment-preview-layer,
  .apartment-entry-video,
  .apartment-exit-video,
  .apartment-end-poster,
  .apartment-preview-arrival,
  .chapter,
  .chapter::before {
    transition-duration: 1ms;
  }

  .journey-arrow,
  .journey-arrow::after,
  .apartment-hotspot-marker,
  .apartment-hotspot-marker::after,
  .apartment-preview-loading-line::after,
  .scroll-cue-chevron {
    animation: none;
  }

  .scroll-cue.is-prompting {
    opacity: 0.9;
    visibility: visible;
    animation: none;
  }
}

/* Wohnungsdetails: nahtloser Übergang vom Einflug in Galerie und Exposé */
.w7-residence {
  position: absolute;
  z-index: 5;
  inset: 0;
  overflow: hidden;
  background: #f5f5f2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity;
  transition:
    opacity 220ms linear,
    visibility 0s linear 220ms;
}

.w7-residence[hidden] {
  display: none;
}

.apartment-preview-layer.is-apartment-detail {
  touch-action: pan-y;
}

.apartment-preview-layer.is-apartment-detail .w7-residence {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 220ms linear,
    visibility 0s linear;
}

.apartment-preview-layer.is-apartment-exiting .w7-residence {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  transition:
    opacity 280ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear;
}

.apartment-preview-layer.is-apartment-detail .apartment-preview-close,
.apartment-preview-layer.is-apartment-exiting .apartment-preview-close {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.apartment-preview-layer.is-apartment-detail .apartment-preview-shade,
.apartment-preview-layer.is-apartment-exiting .apartment-preview-shade,
.apartment-preview-layer.is-apartment-detail .apartment-preview-arrival,
.apartment-preview-layer.is-apartment-exiting .apartment-preview-arrival,
.apartment-preview-layer.is-apartment-detail .apartment-preview-loading {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.w7-site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  color: var(--color-white);
  filter: drop-shadow(0 5px 20px rgba(48, 44, 41, 0.12));
  transition: opacity 180ms ease;
}

.w7-site-header .site-header-main {
  grid-template-columns: minmax(10rem, 0.8fr) auto minmax(11rem, 0.8fr);
}

.w7-site-wordmark {
  position: relative;
  display: block;
  width: clamp(7.4rem, 14.5vw, 12rem);
  height: 1.25rem;
  padding: 0;
  overflow: hidden;
  border: 0;
  outline: 0;
  background: transparent;
  cursor: pointer;
}

.w7-site-wordmark img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 107.5%;
  max-width: none;
  height: auto;
  transform: translate(-4.3%, -25%);
}

.w7-site-wordmark:focus-visible,
.w7-header-return:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

.w7-header-actions {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.65rem, 1.3vw, 1.25rem);
}

.w7-header-return {
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  outline: 0;
  background: rgba(48, 44, 41, 0.12);
  color: var(--color-white);
  cursor: pointer;
  font-family: var(--font-copy);
  font-size: clamp(0.56rem, 0.65vw, 0.66rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.w7-header-actions .site-language {
  justify-self: auto;
}

.w7-residence-scroll {
  position: absolute;
  inset: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: #f5f5f2;
  overscroll-behavior: contain;
  scrollbar-color: var(--color-taupe) rgba(209, 219, 195, 0.36);
  scrollbar-width: thin;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.w7-gallery {
  position: relative;
  min-height: 36rem;
  height: clamp(39rem, 86svh, 58rem);
  overflow: hidden;
  outline: 0;
  background: var(--color-brown-deep);
  color: var(--color-white);
}

.w7-gallery:focus-visible {
  outline: 2px solid var(--color-green-light);
  outline-offset: -5px;
}

.w7-gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translate3d(-100%, 0, 0);
  will-change: transform;
  transition: transform 920ms cubic-bezier(0.65, 0, 0.2, 1);
}

.w7-gallery-track.is-without-transition {
  transition: none;
}

.w7-gallery-slide {
  position: relative;
  width: 100%;
  min-width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  flex: 0 0 100%;
  background: var(--color-brown-deep);
}

.w7-gallery-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0) scale(1.002);
  backface-visibility: hidden;
}

.w7-gallery-slide.is-project-visual figcaption {
  position: absolute;
  z-index: 3;
  right: clamp(1rem, 3vw, 3rem);
  bottom: clamp(5.8rem, 9vh, 7.5rem);
  padding: 0.52rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(48, 44, 41, 0.62);
  color: var(--color-white);
  font-family: var(--font-copy);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.w7-gallery-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(42, 49, 33, 0.34) 0%,
      rgba(42, 49, 33, 0.08) 48%,
      rgba(42, 49, 33, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(48, 44, 41, 0.3) 0%,
      transparent 28%,
      transparent 58%,
      rgba(48, 44, 41, 0.5) 100%
    );
}

.w7-gallery-heading {
  position: absolute;
  z-index: 2;
  bottom: clamp(4.8rem, 9vh, 7rem);
  left: clamp(1.5rem, 6vw, 7rem);
  width: min(48rem, 72vw);
  text-shadow: 0 3px 22px rgba(48, 44, 41, 0.58);
}

.w7-gallery-heading > span,
.w7-section-kicker {
  display: block;
  margin: 0 0 0.75rem;
  font-family: var(--font-accent);
  font-size: clamp(0.61rem, 0.72vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.w7-gallery-heading > span {
  color: var(--color-green-light);
}

.w7-gallery-heading h2 {
  max-width: 17ch;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-copy);
  font-size: clamp(2rem, 4.2vw, 4.6rem);
  font-weight: 300;
  letter-spacing: -0.028em;
  line-height: 0.98;
  text-wrap: balance;
}

.w7-gallery-heading p {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.82rem, 1vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.06em;
}

.w7-gallery-controls {
  position: absolute;
  z-index: 3;
  right: clamp(1.4rem, 4vw, 4.5rem);
  bottom: clamp(1.7rem, 4vh, 3.3rem);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.w7-gallery-button {
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  outline: 0;
  place-items: center;
  background: rgba(48, 44, 41, 0.48);
  color: var(--color-white);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.w7-gallery-button.is-autoplay {
  width: 2.55rem;
  height: 2.55rem;
}

.w7-gallery-button img {
  width: 1rem;
  height: 1rem;
  filter: brightness(0) invert(1);
}

.w7-gallery-button:focus-visible {
  outline: 2px solid var(--color-green-light);
  outline-offset: 3px;
}

.w7-gallery-status {
  position: absolute;
  z-index: 3;
  bottom: clamp(2.2rem, 4.7vh, 4rem);
  left: clamp(1.5rem, 6vw, 7rem);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.12em;
}

.w7-gallery-status-divider {
  width: clamp(2.2rem, 4vw, 4rem);
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.w7-gallery-progress {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.w7-gallery-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-green-light);
  transform: scaleX(calc(1 / 13));
  transform-origin: left center;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.w7-gallery.is-single-slide .w7-gallery-controls,
.w7-gallery.is-single-slide .w7-gallery-status,
.w7-gallery.is-single-slide .w7-gallery-progress {
  display: none;
}

.w7-overview {
  width: 100%;
  background: #f5f5f2;
}

.w7-overview-inner {
  display: grid;
  width: min(100%, 96rem);
  margin: 0 auto;
  padding: clamp(5rem, 7vw, 7.5rem) clamp(2rem, 5vw, 6rem);
  grid-template-columns: minmax(0, 40rem) minmax(28rem, 38rem);
  justify-content: center;
  gap: clamp(3.25rem, 6vw, 7rem);
}

.w7-overview-copy {
  width: 100%;
  max-width: 40rem;
}

.w7-section-kicker {
  color: var(--color-green-dark);
}

.w7-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.w7-title-row h2,
.w7-contact-heading h2 {
  margin: 0;
  font-family: var(--font-copy);
  font-weight: 300;
  letter-spacing: -0.028em;
  text-wrap: balance;
}

.w7-title-row h2 {
  max-width: 18ch;
  color: var(--color-text);
  font-size: clamp(1.75rem, 2.4vw, 2.7rem);
  line-height: 1.06;
}

.w7-price {
  flex: 0 0 auto;
  margin-top: 0.3rem;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  background: var(--color-brown);
  color: var(--color-white);
  font-size: clamp(0.7rem, 0.8vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.w7-facts-line {
  margin: 2rem 0 2.25rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(97, 89, 82, 0.18);
  border-bottom: 1px solid rgba(97, 89, 82, 0.18);
  color: var(--color-taupe);
  font-family: var(--font-copy);
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.45;
}

.w7-overview-copy h3 {
  max-width: 30ch;
  margin: 0 0 1.25rem;
  color: var(--color-brown);
  font-family: var(--font-accent);
  font-size: clamp(1rem, 1.45vw, 1.32rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.w7-overview-copy > p:not(.w7-section-kicker):not(.w7-facts-line) {
  max-width: 62ch;
  margin: 0 0 1rem;
  color: var(--color-text);
  font-size: clamp(0.92rem, 1.05vw, 1.04rem);
  font-weight: 300;
  line-height: 1.65;
}

.w7-primary-action,
.w7-contact-action {
  display: inline-flex;
  min-height: 2.9rem;
  padding: 0.78rem 1.35rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  outline: 0;
  color: var(--color-white);
  cursor: pointer;
  font-family: var(--font-copy);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.w7-primary-action {
  margin-top: 1.1rem;
  background: #9aa9ac;
}

.w7-primary-action:focus-visible,
.w7-contact-action:focus-visible {
  outline: 2px solid var(--color-green-dark);
  outline-offset: 4px;
}

.w7-features {
  display: grid;
  align-content: start;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(1rem, 2.5vw, 2.5rem);
  row-gap: clamp(1.5rem, 3vw, 2.8rem);
}

.w7-feature {
  display: flex;
  min-width: 0;
  align-items: center;
  flex-direction: column;
  gap: 0.72rem;
  text-align: center;
}

.w7-feature img {
  display: block;
  width: clamp(2rem, 2.7vw, 2.65rem);
  height: clamp(2rem, 2.7vw, 2.65rem);
}

.w7-feature span {
  max-width: 12rem;
  color: var(--color-text);
  font-size: clamp(0.71rem, 0.8vw, 0.82rem);
  font-weight: 300;
  line-height: 1.32;
}

.w7-contact {
  display: grid;
  padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 7vw, 8rem);
  grid-template-columns: minmax(0, 0.92fr) minmax(30rem, 1.08fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 10rem);
  background: var(--color-green-deep);
  color: var(--color-white);
}

.w7-contact-heading h2 {
  max-width: 18ch;
  color: var(--color-white);
  font-size: clamp(1.8rem, 2.7vw, 3rem);
  line-height: 1.06;
}

.w7-contact .w7-section-kicker {
  color: var(--color-green-light);
}

.w7-contact-action {
  margin-top: 1.8rem;
  background: var(--color-taupe);
}

.w7-contact-details {
  display: grid;
  margin: 0;
  grid-template-columns: 1.25fr 0.8fr 1.05fr;
  gap: clamp(1.3rem, 3vw, 3rem);
  font-style: normal;
}

.w7-contact-details a {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.74rem, 0.88vw, 0.88rem);
  font-weight: 300;
  line-height: 1.55;
  text-decoration: none;
}

.w7-contact-details img {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.08rem;
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
  opacity: 0.86;
}

.w7-site-footer {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: var(--site-footer-height);
  background: var(--color-brown);
  box-shadow: 0 -5px 20px rgba(48, 44, 41, 0.12);
  color: var(--color-white);
}

@media (hover: hover) {
  .w7-gallery-button:hover {
    border-color: var(--color-white);
    background: rgba(145, 133, 122, 0.94);
    transform: translateY(-2px);
  }

  .w7-primary-action:hover {
    background: #677e82;
    transform: translateY(-2px);
  }

  .w7-contact-action:hover {
    background: var(--color-beige);
    color: var(--color-brown-deep);
    transform: translateY(-2px);
  }

  .w7-contact-details a:hover {
    color: var(--color-green-light);
  }

  .w7-header-return:hover {
    border-color: rgba(255, 255, 255, 0.82);
    background: rgba(48, 44, 41, 0.3);
  }
}

@media (max-width: 1200px) {
  .w7-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .w7-price {
    margin-top: 0;
  }
}

@media (max-width: 1050px) {
  .w7-overview-inner,
  .w7-contact {
    grid-template-columns: 1fr;
  }

  .w7-overview-inner {
    gap: 4rem;
  }

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

  .w7-contact-details {
    max-width: 48rem;
  }
}

@media (max-width: 699px) {
  .apartment-preview-layer.is-apartment-detail .apartment-preview-close {
    top: 0.8rem;
    left: 0.8rem;
    min-height: 2.35rem;
    padding: 0.5rem 0.78rem 0.46rem 0.58rem;
    font-size: 0.58rem;
  }

  .w7-gallery {
    min-height: 31rem;
    height: 72svh;
    max-height: 43rem;
  }

  .w7-site-header .site-header-main {
    grid-template-columns: minmax(7.5rem, 1fr) auto;
  }

  .w7-site-wordmark {
    width: 8.5rem;
  }

  .w7-header-actions .site-language {
    display: none;
  }

  .w7-header-return {
    padding: 0.43rem 0.62rem;
    font-size: 0.53rem;
    letter-spacing: 0.065em;
  }

  .w7-gallery-heading {
    right: 1.1rem;
    bottom: 5.5rem;
    left: 1.1rem;
    width: auto;
  }

  .w7-gallery-heading h2 {
    max-width: 13ch;
    font-size: clamp(1.75rem, 9.5vw, 2.55rem);
    line-height: 1;
  }

  .w7-gallery-heading p {
    margin-top: 0.65rem;
    font-size: 0.76rem;
  }

  .w7-gallery-controls {
    right: 0.9rem;
    bottom: 1.25rem;
    gap: 0.38rem;
  }

  .w7-gallery-button {
    width: 2.65rem;
    height: 2.65rem;
  }

  .w7-gallery-button.is-autoplay {
    width: 2.3rem;
    height: 2.3rem;
  }

  .w7-gallery-status {
    bottom: 2.05rem;
    left: 1.1rem;
  }

  .w7-gallery-slide.is-project-visual figcaption {
    right: 0.8rem;
    bottom: 4.8rem;
    max-width: 12rem;
    font-size: 0.56rem;
    line-height: 1.2;
    text-align: center;
  }

  .w7-overview-inner {
    padding: 4rem 1.15rem 4.5rem;
    gap: 3.5rem;
  }

  .w7-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .w7-title-row h2 {
    max-width: 18ch;
    font-size: clamp(1.7rem, 7.4vw, 2.1rem);
  }

  .w7-price {
    margin-top: 0;
  }

  .w7-facts-line {
    margin: 1.65rem 0 1.9rem;
  }

  .w7-overview-copy > p:not(.w7-section-kicker):not(.w7-facts-line) {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .w7-primary-action,
  .w7-contact-action {
    width: 100%;
  }

  .w7-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 0.65rem;
    row-gap: 1.65rem;
  }

  .w7-feature span {
    font-size: 0.67rem;
  }

  .w7-contact {
    padding: 3.8rem 1.15rem 4.5rem;
    gap: 2.8rem;
  }

  .w7-contact-heading h2 {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .w7-contact-details {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .w7-residence,
  .w7-gallery-track,
  .w7-gallery-progress span,
  .apartment-exit-video,
  .w7-gallery-button,
  .w7-primary-action,
  .w7-contact-action {
    transition-duration: 1ms;
  }
}

/* Kontaktformular und belastbare Desktop-Skalierung */
.w7-contact-details a {
  overflow-wrap: anywhere;
}

.w7-overview,
.w7-contact {
  content-visibility: auto;
}

.w7-overview {
  contain-intrinsic-size: auto 62rem;
}

.w7-contact {
  contain-intrinsic-size: auto 34rem;
}

@media (hover: hover) {
  .contact-dialog-close:hover,
  .contact-form-footer p button:hover {
    color: var(--color-green-dark);
    border-color: currentColor;
  }

  .contact-dialog-direct a:hover {
    color: var(--color-green-light);
  }

  .contact-submit:hover {
    background: var(--color-beige);
    color: var(--color-brown-deep);
    transform: translateY(-2px);
  }
}

@media (min-width: 900px) {
  #site-shell > .site-header .site-header-main {
    grid-template-columns: minmax(10rem, 1fr) auto minmax(10rem, 1fr);
  }
}

@media (min-width: 700px) and (max-width: 1199px) {
  .apartment-hotspot[data-apartment-open="w3"] {
    flex-direction: row-reverse;
    transform: translate(calc(-100% + 1.7rem), -50%);
  }

  .apartment-hotspot[data-apartment-open="w3"] .apartment-hotspot-copy {
    align-items: flex-end;
    text-align: right;
  }
}

@media (min-width: 1600px) and (min-height: 1050px) {
  .w7-gallery {
    height: 86svh;
    max-height: none;
  }
}

@media (min-width: 700px) and (max-width: 1050px) {
  .w7-site-header .site-header-main {
    padding: 0 1rem;
    grid-template-columns: minmax(8rem, 1fr) auto minmax(8rem, 1fr);
    gap: 0.65rem;
  }

  .w7-site-header .site-navigation {
    gap: 0.55rem;
  }

  .contact-form-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .contact-layer {
    padding: 0.75rem;
  }

  .contact-dialog {
    max-height: 96vh;
    max-height: 96dvh;
    grid-template-columns: 1fr;
  }

  .contact-dialog-intro {
    padding: 1.7rem 1.5rem 1.55rem;
  }

  .contact-dialog-intro h2 {
    max-width: 17ch;
    font-size: clamp(1.65rem, 5vw, 2.2rem);
  }

  .contact-dialog-intro > p:last-of-type {
    margin-top: 0.8rem;
  }

  .contact-dialog-direct {
    display: none;
  }

  .contact-dialog-form-panel {
    padding: 3.75rem 1.5rem 1.55rem;
  }

  .contact-dialog-close {
    right: 1.5rem;
  }
}

@media (max-width: 580px) {
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-field.is-wide,
  .contact-form-footer.is-wide,
  .contact-form-status.is-wide {
    grid-column: auto;
  }

  .contact-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-submit {
    width: 100%;
    min-width: 0;
  }
}

@media (max-height: 760px) and (min-width: 821px) {
  .contact-dialog {
    max-height: 95dvh;
  }

  .contact-dialog-intro {
    padding-top: 2.15rem;
    padding-bottom: 2.15rem;
  }

  .contact-dialog-form-panel {
    padding-top: 3.5rem;
    padding-bottom: 1.35rem;
  }

  .contact-form {
    gap: 0.8rem 1rem;
  }

  .contact-field textarea {
    min-height: 5.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-layer,
  .contact-submit,
  .contact-field input,
  .contact-field select,
  .contact-field textarea,
  .apartment-origin-poster {
    transition-duration: 1ms;
  }

  .apartment-preview-layer.is-launching:not(.has-first-frame)
    .apartment-origin-poster {
    filter: none;
    transform: translateZ(0);
  }
}
