﻿@font-face {
  font-family: "Geist";
  src: url("assets/fonts/Geist/Geist-Regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

/*
Theme Name: PXS Szablon Witkiewicza
Theme URI: https://pixelshark.pl/
Author: PixelShark
Author URI: https://pixelshark.pl/
Description: Dedykowany motyw WordPress dla Witkiewicza Apartments z panelem PXS Szablon, edytowalnymi sekcjami, osobnymi menu oraz szablonami stron.
Version: 1.1.49
Requires at least: 6.6
Tested up to: 6.8
Requires PHP: 8.1
Text Domain: pxs-szablon
*/

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

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/Geist/Geist-Bold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Switzer";
  src: url("assets/fonts/Switzer/Switzer-Regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Switzer";
  src: url("assets/fonts/Switzer/Switzer-Bold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  --bg: #0f0f0f;
  --panel: #171717;
  --ink: #f2f1ed;
  --muted: rgba(242, 241, 237, 0.64);
  --soft: rgba(242, 241, 237, 0.12);
  --line: rgba(242, 241, 237, 0.18);
  --glass: rgba(255, 255, 255, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --route-ease: cubic-bezier(0.19, 1, 0.22, 1);
  --route-duration: 1.28s;
  --font: "Geist", sans-serif;
  --font-heading: "Switzer", sans-serif;
}

@view-transition {
  navigation: auto;
}

::view-transition-group(root) {
  animation-duration: var(--route-duration);
  animation-timing-function: var(--route-ease);
}

::view-transition-image-pair(root) {
  isolation: isolate;
}

::view-transition-old(root),
::view-transition-new(root) {
  height: 100%;
  mix-blend-mode: normal;
  object-fit: cover;
  transform-origin: center top;
}

::view-transition-old(root) {
  z-index: 1;
  animation: pxsRouteNativeOld var(--route-duration) var(--route-ease) both;
}

::view-transition-new(root) {
  z-index: 2;
  animation: pxsRouteNativeNew var(--route-duration) var(--route-ease) both;
}

@keyframes pxsRouteNativeOld {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    opacity: 0.72;
    transform: translate3d(0, -2.5vh, 0) scale(0.985);
  }
}

@keyframes pxsRouteNativeNew {
  from {
    opacity: 0.98;
    transform: translate3d(0, 24vh, 0) scale(1.01);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  letter-spacing: -0.02em;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

body::selection {
  background: var(--ink);
  color: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  letter-spacing: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

.pxs-route-panel {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 32;
  height: 100svh;
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.92), rgba(15, 15, 15, 0.98));
  pointer-events: none;
  transform: translate3d(0, 100%, 0);
  transition: transform var(--route-duration) var(--route-ease);
  will-change: transform;
}

body.pxs-route-leaving main {
  opacity: 0.78;
  transform: translate3d(0, -2.5vh, 0) scale(0.985);
  transform-origin: center top;
  transition:
    opacity var(--route-duration) var(--route-ease),
    transform var(--route-duration) var(--route-ease);
}

body.pxs-route-leaving .pxs-route-panel {
  transform: translate3d(0, 0, 0);
}

.js.pxs-route-enter main {
  animation: pxsRouteEnter var(--route-duration) var(--route-ease) both;
  transform-origin: center top;
}

.js.pxs-route-enter .pxs-menu-dock {
  animation: pxsRouteMenuEnter 1.18s var(--route-ease) both;
}

@keyframes pxsRouteEnter {
  from {
    opacity: 0.01;
    transform: translate3d(0, 18vh, 0) scale(1.01);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes pxsRouteMenuEnter {
  0% {
    opacity: 0.52;
    transform: translate3d(0, -18px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.pxs-site-header {
  position: absolute;
  top: 32px;
  left: 36px;
  right: 36px;
  z-index: 41;
  pointer-events: none;
}

.pxs-menu-dock {
  position: fixed;
  top: 64px;
  right: 72px;
  z-index: 40;
  width: 64px;
  height: 64px;
  max-width: calc(100% - 32px);
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(34,34,34,0.78), rgba(9,9,9,0.58));
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  overflow: hidden;
  pointer-events: auto;
  transition:
    width 0.62s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

body.pxs-menu-open .pxs-menu-dock {
  width: min(520px, calc(100vw - 144px));
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(34,34,34,0.86), rgba(8,8,8,0.72));
  box-shadow: 0 28px 92px rgba(0, 0, 0, 0.42);
}

.pxs-brand {
  display: inline-flex;
  width: 180px;
  pointer-events: auto;
}

.pxs-brand img {
  width: 100%;
  height: auto;
}

body:not(.pxs-page-home) .pxs-brand {
  width: 108px;
}

.pxs-page-home .pxs-brand {
  opacity: 0;
  transform: translate3d(0, -12px, 0);
  animation: pxsHeroLogoIn 0.85s var(--ease) 3.05s forwards;
}

@keyframes pxsHeroLogoIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.pxs-menu-toggle {
  position: relative;
  z-index: 2;
  flex: 0 0 64px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.pxs-menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

body.pxs-menu-open .pxs-menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

body.pxs-menu-open .pxs-menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.pxs-nav {
  position: absolute;
  left: 16px;
  right: 64px;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  min-width: 0;
  padding: 0 4px 0 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(26px, -50%, 0);
  transition:
    opacity 0.34s var(--ease) 0.08s,
    transform 0.54s cubic-bezier(0.16, 1, 0.3, 1) 0.04s;
}

body.pxs-menu-open .pxs-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, -50%, 0);
}

.pxs-nav a {
  flex: 0 0 auto;
  padding: 9px 11px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.pxs-nav a:hover,
.pxs-nav a.pxs-is-active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.pxs-screen-panel {
  width: calc(100% - 32px);
  margin: 16px auto;
  border-radius: 14px;
  overflow: hidden;
}

.pxs-home-hero {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 32px);
  display: flex;
  align-items: flex-end;
  background: #171717;
}

.pxs-home-hero-image,
.pxs-about-hero > img,
.pxs-image-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pxs-home-hero-image {
  border-radius: 10px;
  object-position: center top;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(0.852);
  transform-origin: center center;
  will-change: transform;
}

.pxs-hero-ready .pxs-home-hero-image {
  animation: pxsHeroImageIn 2.4s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

@keyframes pxsHeroImageIn {
  to {
    border-radius: 0;
    transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.045);
  }
}

.pxs-media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.03) 20%, rgba(0,0,0,0.18) 52%, rgba(0,0,0,0.72) 100%);
  pointer-events: none;
}

.pxs-home-hero-copy {
  position: absolute;
  left: 54px;
  right: 54px;
  bottom: 42px;
  z-index: 3;
  display: grid;
  gap: 28px;
  width: auto;
  padding: 0;
}

.pxs-split-title {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 52px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.pxs-split-title > span {
  display: block;
  overflow: hidden;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}

.pxs-split-title > span > span {
  display: block;
  transform: translateY(124%);
  animation: pxsTitleIn 1s var(--ease) forwards;
}

.pxs-split-title > span:nth-child(2) > span { animation-delay: 0.12s; }
.pxs-split-title > span:nth-child(3) > span { animation-delay: 0.22s; }

.js .pxs-page-home .pxs-home-hero-copy.pxs-reveal,
.js .pxs-page-home .pxs-home-hero-copy.pxs-reveal.pxs-is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.pxs-page-home .pxs-home-hero .pxs-split-title > span > span {
  animation-delay: 3.05s;
}

.pxs-page-home .pxs-home-hero .pxs-split-title > span:nth-child(2) > span {
  animation-delay: 3.17s;
}

@keyframes pxsTitleIn {
  to { transform: translateY(0); }
}

.pxs-home-hero .pxs-split-title {
  max-width: 720px;
  font-size: clamp(38px, 4.5vw, 52px);
}

.pxs-hero-action-row {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
}

.pxs-hero-line {
  flex: 1;
  height: 1px;
  background: rgba(242, 241, 237, 0.62);
  transform: scaleX(0);
  transform-origin: left;
  animation: pxsLineIn 1.1s var(--ease) 0.72s forwards;
}

.pxs-page-home .pxs-hero-line {
  animation-delay: 3.3s;
}

@keyframes pxsLineIn {
  to { transform: scaleX(1); }
}

.pxs-pill-button {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  backdrop-filter: blur(18px);
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}

.pxs-page-home .pxs-hero-action-row {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  animation: pxsHeroCtaIn 0.85s var(--ease) 3.12s forwards;
}

@keyframes pxsHeroCtaIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.pxs-pill-button:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.pxs-home-collage {
  --collage-gap: clamp(16px, 2.2vw, 32px);
  --collage-center-width: clamp(470px, 43vw, 820px);
  --collage-side-width: calc((100vw - var(--collage-center-width) - var(--collage-gap) - var(--collage-gap)) / 2);
  position: sticky;
  top: -880px;
  z-index: 0;
  width: 100vw;
  height: 1840px;
  margin: -398px 0 0;
  margin-left: calc(50% - 50vw);
  pointer-events: none;
}

.pxs-collage-tile {
  display: block;
  position: absolute;
  height: 819px;
  overflow: hidden;
  transform: translate3d(0, var(--tile-y, 0px), 0);
  will-change: transform;
}

.pxs-collage-tile > img {
  position: absolute;
  top: -92px;
  left: 0;
  width: 100%;
  max-width: none;
  height: calc(100% + 184px);
  object-fit: cover;
  object-position: center center;
  transform: translate3d(0, var(--image-y, 0px), 0) scale(var(--image-scale, 1.01));
  transform-origin: center center;
  will-change: transform;
}

.js .pxs-home-collage.pxs-stagger > .pxs-collage-tile,
.js .pxs-home-collage.pxs-stagger.pxs-is-visible > .pxs-collage-tile {
  transform: translate3d(0, var(--tile-y, 0px), 0);
  transition: opacity 0.75s var(--ease);
  transition-delay: 0s;
}

.pxs-collage-left-top,
.pxs-collage-left-bottom {
  left: 0;
  width: var(--collage-side-width);
}

.pxs-collage-center-top,
.pxs-collage-center-bottom {
  left: calc(var(--collage-side-width) + var(--collage-gap));
  width: var(--collage-center-width);
}

.pxs-collage-right-top,
.pxs-collage-right-bottom {
  left: calc(var(--collage-side-width) + var(--collage-gap) + var(--collage-center-width) + var(--collage-gap));
  width: var(--collage-side-width);
}

.pxs-collage-left-top,
.pxs-collage-right-top {
  top: 0;
}

.pxs-collage-center-top {
  top: 154px;
}

.pxs-collage-left-bottom,
.pxs-collage-right-bottom {
  top: 851px;
}

.pxs-collage-center-bottom {
  top: 1005px;
}

.pxs-section {
  width: min(1368px, calc(100% - 72px));
  margin: 0 auto;
  padding: clamp(86px, 10vw, 150px) 0;
}

.pxs-section.compact {
  padding-top: 24px;
}

.pxs-heritage-section {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 126px;
  padding: 105px 0 0;
  background: var(--bg);
  overflow: hidden;
}

.pxs-heritage-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -260px;
  bottom: 0;
  z-index: 0;
  background: var(--bg);
  transform: translate3d(0, var(--section-panel-y, 0px), 0);
  will-change: transform;
}

.pxs-heritage-section > * {
  position: relative;
  z-index: 1;
  width: min(1368px, calc(100% - 72px));
  margin-left: auto;
  margin-right: auto;
}

.pxs-heritage-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 66px;
}

.js .pxs-heritage-heading.pxs-reveal,
.js .pxs-heritage-slider.pxs-reveal,
.js .pxs-heritage-controls.pxs-reveal {
  opacity: 1;
  transform: none;
}

.js .pxs-heritage-heading.pxs-reveal h2,
.js .pxs-heritage-heading.pxs-reveal p,
.js .pxs-heritage-heading.pxs-reveal .pxs-pill-link,
.js .pxs-heritage-slider.pxs-reveal .pxs-heritage-card,
.js .pxs-heritage-controls.pxs-reveal .pxs-slider-arrow {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.js .pxs-heritage-heading.pxs-reveal.pxs-is-visible h2,
.js .pxs-heritage-heading.pxs-reveal.pxs-is-visible p,
.js .pxs-heritage-heading.pxs-reveal.pxs-is-visible .pxs-pill-link,
.js .pxs-heritage-slider.pxs-reveal.pxs-is-visible .pxs-heritage-card,
.js .pxs-heritage-controls.pxs-reveal.pxs-is-visible .pxs-slider-arrow {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js .pxs-heritage-heading.pxs-reveal.pxs-is-visible p { transition-delay: 0.12s; }
.js .pxs-heritage-heading.pxs-reveal.pxs-is-visible .pxs-pill-link { transition-delay: 0.34s; }
.js .pxs-heritage-slider.pxs-reveal.pxs-is-visible .pxs-heritage-card:nth-child(1) { transition-delay: 0.04s; }
.js .pxs-heritage-slider.pxs-reveal.pxs-is-visible .pxs-heritage-card:nth-child(2) { transition-delay: 0.14s; }
.js .pxs-heritage-slider.pxs-reveal.pxs-is-visible .pxs-heritage-card:nth-child(3) { transition-delay: 0.24s; }
.js .pxs-heritage-slider.pxs-reveal.pxs-is-visible .pxs-heritage-card:nth-child(4) { transition-delay: 0.34s; }
.js .pxs-heritage-controls.pxs-reveal.pxs-is-visible .pxs-slider-arrow:nth-child(1) { transition-delay: 0.24s; }
.js .pxs-heritage-controls.pxs-reveal.pxs-is-visible .pxs-slider-arrow:nth-child(2) { transition-delay: 0.34s; }

.pxs-heritage-heading h2 {
  margin: 0;
  font-size: clamp(34px, 3.4vw, 41px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.pxs-heritage-heading p {
  width: min(520px, 100%);
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}

.pxs-heritage-heading > div::after {
  content: "";
  display: block;
  width: min(684px, 100%);
  height: 1px;
  margin-top: 28px;
  background: rgba(242, 241, 237, 0.62);
  transform-origin: left;
}

.js .pxs-heritage-heading > div::after {
  transform: scaleX(0);
  transition: transform 1s var(--ease);
}

.js .pxs-heritage-heading.pxs-is-visible > div::after {
  transform: scaleX(1);
  transition-delay: 0.24s;
}

.pxs-image-cta h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 52px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.pxs-heritage-slider {
  width: min(1368px, calc(100% - 72px));
  max-width: none;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pxs-heritage-slider::-webkit-scrollbar {
  display: none;
}

.pxs-heritage-track {
  --card-gap: clamp(34px, 6.9vw, 100px);
  display: flex;
  align-items: flex-start;
  gap: var(--card-gap);
  width: max-content;
  transform: translate3d(var(--slider-x, 0px), 0, 0);
  transition: transform 0.85s var(--ease);
  will-change: transform;
}

.pxs-heritage-slider .pxs-heritage-card {
  --pxs-card-media-top: 63px;
  flex: 0 0 min(359px, calc((100% - (2 * var(--card-gap))) / 3));
}

.pxs-heritage-slider .pxs-heritage-card::before,
.pxs-heritage-slider .pxs-heritage-card::after {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.pxs-heritage-slider .pxs-heritage-card::before {
  content: "";
  left: 0;
  right: 0;
  top: var(--pxs-card-media-top);
  bottom: 0;
  z-index: 1;
  background: radial-gradient(circle at center, rgba(15, 15, 15, 0.34), rgba(15, 15, 15, 0.06) 54%, transparent 74%);
  transform: scale(0.98);
}

.pxs-heritage-slider .pxs-heritage-card::after {
  content: "ZOBACZ";
  left: 50%;
  top: calc(var(--pxs-card-media-top) + ((100% - var(--pxs-card-media-top)) / 2));
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(242, 241, 237, 0.42);
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.58);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  transform: translate3d(-50%, calc(-50% + 14px), 0) scale(0.92);
}

.pxs-heritage-slider .pxs-heritage-card:hover::before,
.pxs-heritage-slider .pxs-heritage-card:focus-visible::before,
.pxs-heritage-slider .pxs-heritage-card:hover::after,
.pxs-heritage-slider .pxs-heritage-card:focus-visible::after {
  opacity: 1;
}

.pxs-heritage-slider .pxs-heritage-card:hover::before,
.pxs-heritage-slider .pxs-heritage-card:focus-visible::before {
  transform: scale(1);
}

.pxs-heritage-slider .pxs-heritage-card:hover::after,
.pxs-heritage-slider .pxs-heritage-card:focus-visible::after {
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.pxs-heritage-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 42px;
}

.pxs-slider-arrow {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.pxs-slider-arrow:hover {
  transform: translateY(-2px);
}

.pxs-slider-arrow img {
  width: 40px;
  height: 40px;
}

.pxs-why-section {
  position: relative;
  z-index: 3;
  isolation: isolate;
  width: 100%;
  padding: 50px 0 168px;
  background: var(--bg);
  overflow: clip;
}

.pxs-why-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  height: 120px;
  pointer-events: none;
  background: var(--bg);
}

.pxs-why-head {
  width: min(1368px, calc(100% - 72px));
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: minmax(0, 684px) minmax(80px, 1fr) auto;
  gap: 36px;
  align-items: start;
}

.pxs-why-head > .pxs-pill-link {
  grid-column: 3;
  justify-self: end;
  align-self: start;
}

.pxs-why-head h2 {
  margin: 0;
  font-size: clamp(34px, 3.4vw, 41px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.pxs-why-head p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.pxs-why-head p span {
  display: block;
}

.pxs-why-head > div::after,
.pxs-why-feature::after,
.pxs-footer::before {
  content: "";
  display: block;
  height: 1px;
  background: rgba(242, 241, 237, 0.62);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease);
}

.pxs-why-head > div::after {
  width: 100%;
  margin-top: 40px;
}

.pxs-why-head.pxs-is-visible > div::after,
.pxs-why-feature.pxs-line-visible::after,
.pxs-footer.pxs-is-visible::before {
  transform: scaleX(1);
}

.pxs-why-layout {
  width: min(1368px, calc(100% - 72px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 568px) minmax(520px, 644px);
  gap: clamp(74px, 11vw, 156px);
  align-items: start;
}

.pxs-why-copy {
  display: grid;
  gap: 54px;
}

.pxs-why-feature h3 {
  margin: 0 0 132px;
  font-size: clamp(27px, 2.9vw, 32px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.pxs-why-feature h3 span {
  display: block;
}

.pxs-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-bottom: 38px;
}

.pxs-feature-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pxs-why-feature p {
  width: min(568px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.pxs-why-feature::after {
  width: min(568px, 100%);
  margin-top: 36px;
}

.pxs-why-visual {
  position: sticky;
  top: 23px;
  height: calc(100svh - 46px);
  align-self: start;
  overflow: hidden;
  background: #0b0b0b;
  isolation: isolate;
  transition: opacity 0.28s linear;
}

.pxs-why-visual-base {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.pxs-why-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 48%, transparent 0 22%, rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.38) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 34%, rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.pxs-why-visual-sequence {
  --gallery-phase: 0;
  position: absolute;
  left: 25.2%;
  top: 31%;
  width: 50%;
  aspect-ratio: 1;
  overflow: hidden;
  z-index: 2;
  border-radius: 2px;
  background: rgba(10, 10, 10, 0.34);
  box-shadow:
    0 26px 68px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.pxs-why-visual-sequence::before,
.pxs-why-visual-sequence::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

.pxs-why-visual-sequence::before {
  border: 1px solid rgba(255, 255, 255, 0.12);
  mix-blend-mode: screen;
}

.pxs-why-visual-sequence::after {
  opacity: 0.28;
  background: linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.32) 49%, transparent 58% 100%);
  transform: translate3d(calc(-135% + (var(--gallery-phase, 0) * 270%)), 0, 0);
  transition: transform 0.16s linear;
  mix-blend-mode: soft-light;
}

.pxs-why-visual-sequence img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  clip-path: inset(10% round 14px);
  filter: blur(16px) saturate(0.82) contrast(0.95);
  transform: translate3d(0, 18px, 0) scale(0.94) rotate(0.001deg);
  transition:
    opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.08s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.92s cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 1.08s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter, clip-path;
}

.pxs-why-visual-sequence img.pxs-is-previous {
  opacity: 0.16;
  filter: blur(10px) saturate(0.86);
  transform: translate3d(0, -12px, 0) scale(1.12) rotate(0.001deg);
}

.pxs-why-visual-sequence img.pxs-is-active {
  opacity: 1;
  clip-path: inset(0 round 0);
  filter: blur(0) saturate(1.05) contrast(1.03);
  transform:
    translate3d(0, calc((var(--gallery-phase, 0) - 0.5) * -18px), 0)
    scale(calc(1.075 - (var(--gallery-phase, 0) * 0.035)))
    rotate(0.001deg);
}

.pxs-heritage-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-width: 0;
}

.pxs-heritage-card span {
  font-size: 22.5px;
  line-height: 1.05;
  font-weight: 600;
}

.pxs-heritage-card small {
  min-height: 20px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.pxs-heritage-card img {
  width: 100%;
  aspect-ratio: 0.75;
  object-fit: cover;
  filter: saturate(0.95);
  transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
}

.pxs-heritage-card:hover img {
  transform: scale(0.975);
  filter: saturate(1.08) brightness(1.06);
}

.pxs-heritage-card em {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.74);
  color: var(--ink);
  font-size: 13px;
  font-style: normal;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.pxs-heritage-card:hover em {
  opacity: 1;
  transform: translateY(0);
}

.pxs-pill-link,
.pxs-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 18px;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.pxs-heritage-heading .pxs-pill-link {
  flex-shrink: 0;
}

.pxs-pill-link:hover,
.pxs-submit:hover {
  background: var(--ink);
  color: var(--bg);
}

.pxs-about-hero {
  position: relative;
  min-height: calc(100svh - 32px);
  display: flex;
  align-items: stretch;
}

.pxs-about-hero-copy {
  position: relative;
  z-index: 1;
  width: calc(100% - 54px);
  min-height: calc(100svh - 32px);
  display: grid;
  grid-template-columns: minmax(0, 45vw) minmax(0, 1fr);
  align-items: end;
  padding: 0 0 52px 52px;
}

.pxs-about-hero .pxs-split-title {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  padding-bottom: 30px;
}

.pxs-about-tags {
  position: relative;
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: end;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "center-tag button";
  align-items: end;
  gap: 8px 32px;
  width: 100%;
  margin-top: 0;
  padding-bottom: 30px;
}

.pxs-about-center-tag {
  grid-column: 1 / -1;
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 2;
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: left;
  transform: translateX(-50%);
  white-space: nowrap;
}

.pxs-about-tags::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(242, 241, 237, 0.62);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease);
}

.pxs-about-tags.pxs-is-visible::after {
  transform: scaleX(1);
}

.pxs-about-button {
  grid-area: button;
  justify-self: end;
  align-self: end;
  margin-bottom: 2px;
}

.pxs-about-story {
  padding-top: clamp(104px, 10vw, 126px);
  padding-bottom: clamp(48px, 6vw, 78px);
}

.pxs-about-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 684px) auto;
  gap: 36px;
  align-items: end;
  padding-bottom: 58px;
}

.pxs-about-row::before,
.pxs-about-row:last-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(242, 241, 237, 0.62);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease);
}

.pxs-about-row::before {
  top: 0;
  bottom: auto;
}

.pxs-about-row:last-child::after {
  top: auto;
  bottom: 0;
}

.pxs-about-row.pxs-is-visible::before,
.pxs-about-row.pxs-is-visible::after {
  transform: scaleX(1);
}

.pxs-about-intro h2 {
  margin: 0;
  font-size: clamp(34px, 3.4vw, 41px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.pxs-trust-image-card h2 {
  margin: 0;
  font-size: clamp(27px, 2.9vw, 32px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.pxs-about-intro p {
  width: min(684px, 100%);
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.pxs-about-intro .pxs-pill-link {
  justify-self: end;
}

.pxs-about-row {
  position: relative;
  min-height: 310px;
  display: grid;
  grid-template-columns: 0.93fr 1.06fr 1.06fr;
  gap: clamp(28px, 4.2vw, 58px);
  align-content: start;
  padding: 38px 0 70px;
}

.pxs-about-row-short {
  min-height: 180px;
  grid-template-columns: 0.93fr minmax(0, 1.06fr) minmax(0, 1.06fr);
}

.pxs-about-row-short p:nth-child(2) {
  grid-column: 2 / 3;
}

.pxs-about-row p,
.pxs-about-copy-block p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.pxs-about-copy-block {
  display: grid;
  gap: 12px;
  align-content: start;
}

.pxs-about-copy-block h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  font-size: 20px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.pxs-about-row .pxs-about-row-title {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.05;
  font-weight: 600;
}

.pxs-about-trust {
  padding-top: 0;
  padding-bottom: clamp(84px, 8vw, 126px);
}

.pxs-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
  gap: 14px;
}

.pxs-trust-image-card,
.pxs-trust-quote-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(242, 241, 237, 0.4);
  border-radius: 12px;
  background: #131313;
}

.pxs-trust-image-card,
.pxs-trust-quote-card {
  min-height: 560px;
}

.pxs-trust-image-card img {
  position: absolute;
  inset: -7% 0;
  width: 100%;
  height: 114%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.86);
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.015);
  transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
  will-change: transform;
}

.pxs-trust-image-card:hover img {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.045);
  filter: brightness(0.58) saturate(0.94);
}

.pxs-trust-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.38) 38%, rgba(0,0,0,0.7) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.36), rgba(0,0,0,0.08) 62%);
}

.pxs-trust-image-card > div {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 48px));
  padding: 38px 0 0 38px;
}

.pxs-trust-image-card p {
  margin: 16px 0 26px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.pxs-trust-quote-card {
  display: block;
  padding: 38px;
}

.pxs-trust-slide {
  position: absolute;
  inset: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  padding-bottom: 44px;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.pxs-trust-slide.pxs-is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.pxs-trust-slide blockquote {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.pxs-trust-dots {
  position: absolute;
  left: 38px;
  bottom: 34px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.pxs-trust-dots button {
  width: 28px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(242, 241, 237, 0.28);
  cursor: pointer;
  transition: width 0.35s var(--ease), background 0.35s var(--ease);
}

.pxs-trust-dots button.pxs-is-active {
  width: 42px;
  background: var(--ink);
}

.pxs-trust-person {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: -0.02em;
}

.pxs-trust-person strong {
  color: var(--ink);
  font-size: 16px;
}

.pxs-final-cta {
  min-height: calc(100svh - 32px);
  align-items: flex-start;
  border: 1px solid rgba(242, 241, 237, 0.42);
}

.pxs-final-cta > div {
  width: min(720px, calc(100% - 108px));
  padding: clamp(106px, 12vh, 130px) 0 0 54px;
}

.pxs-final-cta h2 {
  margin-bottom: 26px;
  font-size: clamp(38px, 4.5vw, 52px);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

blockquote {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  color: var(--ink);
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.4;
}

blockquote cite {
  display: block;
  margin-top: 26px;
  color: var(--muted);
  font-size: 15px;
  font-style: normal;
  letter-spacing: -0.02em;
}

.pxs-contact-hero {
  position: relative;
  min-height: calc(100svh - 32px);
  display: flex;
  align-items: flex-end;
  padding: 0;
  background: #131313;
}

.pxs-contact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pxs-contact-panel {
  position: relative;
  z-index: 1;
  width: calc(100% - 40px);
  min-height: 361px;
  margin: 0 auto 16px;
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 32px;
  border: 1px solid rgba(242, 241, 237, 0.86);
  border-radius: 14px;
  background: #131313;
}

.pxs-contact-copy {
  min-height: 297px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pxs-contact-title {
  margin: 0;
  font-size: clamp(31px, 3.1vw, 40px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.pxs-contact-lead {
  align-self: flex-start;
  width: min(560px, 100%);
  margin: auto 0 0;
  color: var(--ink);
  display: grid;
  gap: 22px;
  font-size: 14.5px;
  line-height: 1.46;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.pxs-contact-office {
  display: grid;
  gap: 6px;
}

.pxs-contact-office strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.16;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.pxs-contact-office a:not(.pxs-contact-phone):not(.pxs-contact-email) {
  color: rgba(242, 241, 237, 0.84);
  transition: color 0.3s var(--ease);
}

.pxs-contact-office a:not(.pxs-contact-phone):not(.pxs-contact-email):hover {
  color: var(--ink);
}

.pxs-contact-phone,
.pxs-contact-email {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: rgba(242, 241, 237, 0.92);
  font-weight: 500;
  transition: color 0.3s var(--ease);
}

.pxs-contact-phone:hover,
.pxs-contact-email:hover {
  color: var(--ink);
}

.pxs-contact-phone svg,
.pxs-contact-email svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: currentColor;
  opacity: 0.86;
}

.pxs-contact-map-section {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 16px 0;
}

.pxs-contact-map {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  border-block: 1px solid rgba(242, 241, 237, 0.34);
  background: #111;
}

.pxs-contact-map-image {
  display: block;
  width: 100%;
  height: auto;
}

.pxs-contact-map::before,
.pxs-contact-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.pxs-contact-map::before {
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.02), transparent 28%, rgba(15, 15, 15, 0.1));
}

.pxs-contact-map::after {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pxs-map-location {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 32px);
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(242, 241, 237, 0.34);
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.72);
  color: var(--ink);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
  transform: translate3d(-50%, -50%, 0);
  white-space: nowrap;
}

.pxs-map-pin {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border: 1px solid rgba(242, 241, 237, 0.82);
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 0 0 7px rgba(242, 241, 237, 0.12);
}

.pxs-map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--bg);
  transform: translate3d(-50%, -50%, 0);
}

.pxs-contact-form {
  display: grid;
  align-content: start;
  gap: 20px;
}

.pxs-contact-message {
  padding: 12px 14px;
  border: 1px solid rgba(242, 241, 237, 0.24);
  border-radius: 8px;
  background: rgba(242, 241, 237, 0.08);
  color: rgba(242, 241, 237, 0.9);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.pxs-contact-message.is-error {
  border-color: rgba(210, 120, 98, 0.42);
  background: rgba(210, 120, 98, 0.1);
}

.pxs-contact-form .pxs-field {
  width: 100%;
  min-height: 41px;
  border: 0;
  border-bottom: 1px solid rgba(242, 241, 237, 0.86);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  letter-spacing: -0.02em;
  padding: 0;
  outline: none;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.pxs-contact-form textarea.pxs-field {
  min-height: 96px;
  padding-top: 0;
  resize: vertical;
}

.pxs-contact-form-notice {
  margin-top: -4px;
  color: rgba(242, 241, 237, 0.62);
  font-size: 10.5px;
  line-height: 1.42;
  letter-spacing: 0;
}

.pxs-contact-form-notice p {
  margin: 0 0 8px;
}

.pxs-contact-form-notice p:first-child {
  margin-bottom: 10px;
  color: rgba(242, 241, 237, 0.82);
  font-size: 11px;
  font-weight: 600;
}

.pxs-contact-form-notice p:last-child {
  margin-bottom: 0;
}

.pxs-contact-form .pxs-field:focus {
  border-color: rgba(255, 255, 255, 0.44);
  background: transparent;
}

.pxs-contact-form .pxs-field::placeholder {
  color: var(--muted);
}

.pxs-contact-form .pxs-submit {
  margin-top: 13px;
}

.pxs-image-cta {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.pxs-home-finale {
  position: relative;
  z-index: 8;
  isolation: isolate;
  min-height: calc(100svh - 32px);
  align-items: flex-start;
  border: 1px solid rgba(242, 241, 237, 0.76);
  background: var(--bg);
  box-shadow: 0 -180px 0 0 var(--bg);
}

.pxs-image-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.76));
  z-index: 1;
}

.pxs-image-cta > div {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 48px));
  padding: 0 0 48px 48px;
}

.pxs-home-finale > div {
  width: min(1368px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
  padding: clamp(96px, 14vh, 128px) 0 0;
}

.pxs-home-finale h2 {
  max-width: 1040px;
  font-size: clamp(38px, 4.5vw, 52px);
  line-height: 0.9;
}

.pxs-home-finale h2 span {
  display: block;
}

.pxs-finale-button {
  display: inline-flex;
  margin-top: clamp(116px, 16vh, 176px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

.pxs-image-cta > img {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.04);
  will-change: transform;
}

.js .pxs-image-cta.pxs-reveal {
  opacity: 1;
  transform: none;
}

.js .pxs-image-cta.pxs-reveal > img {
  opacity: 0;
  filter: blur(10px) saturate(0.92);
  transform: translate3d(0, calc(var(--parallax-y, 0px) + 34px), 0) scale(1.1);
  transition:
    opacity 1.1s var(--ease),
    filter 1.1s var(--ease),
    transform 1.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .pxs-image-cta.pxs-reveal.pxs-is-visible > img {
  opacity: 1;
  filter: blur(0) saturate(1);
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.04);
}

.js .pxs-image-cta.pxs-reveal h2,
.js .pxs-image-cta.pxs-reveal .pxs-pill-link {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 0.95s var(--ease),
    transform 0.95s var(--ease);
}

.js .pxs-image-cta.pxs-reveal.pxs-is-visible h2 {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.16s;
}

.js .pxs-image-cta.pxs-reveal.pxs-is-visible .pxs-pill-link {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.3s;
}

.pxs-image-cta.pxs-final-cta {
  align-items: flex-start;
  border: 1px solid rgba(242, 241, 237, 0.42);
}

.pxs-image-cta.pxs-final-cta > div {
  width: min(1368px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
  padding: clamp(92px, 12vh, 128px) 0 0;
}

.pxs-image-cta.pxs-final-cta h2 {
  max-width: 852px;
  margin-bottom: 26px;
  font-size: clamp(38px, 4.5vw, 52px);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.pxs-footer {
  position: relative;
  z-index: 12;
  width: min(1368px, calc(100% - 72px));
  margin: -146px auto 16px;
  padding: 34px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  column-gap: 28px;
  row-gap: 24px;
  align-items: end;
  color: var(--muted);
  font-size: 15px;
}

.pxs-footer::before {
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: 10px;
  background: rgba(242, 241, 237, 0.48);
}

.pxs-footer > span {
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pxs-footer-copy-icon {
  font-size: 16px;
  line-height: 1;
}

.pxs-footer nav {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-self: center;
}

.pxs-footer a:hover {
  color: var(--ink);
}

.pxs-credit {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.pxs-credit-heart {
  display: inline-block;
  color: currentColor;
  font-size: 18px;
  line-height: 1;
}

.pxs-apartment-marquee {
  position: relative;
  width: 100%;
  height: min(52vw, 450px);
  min-height: 360px;
  overflow: hidden;
  background: #090909;
}

.pxs-apartment-marquee::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.34), transparent 14%, transparent 86%, rgba(15, 15, 15, 0.34)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 44%, rgba(0, 0, 0, 0.18));
}

.pxs-apartment-marquee-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: pxsApartmentMarquee 38s linear infinite;
  will-change: transform;
}

.pxs-apartment-marquee-track img {
  flex: 0 0 300px;
  width: 300px;
  height: 100%;
  object-fit: cover;
}

@keyframes pxsApartmentMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.pxs-apartment-overview {
  width: min(1368px, calc(100% - 72px));
  margin: 0 auto;
  padding: 80px 0 88px;
}

.pxs-apartment-row {
  border-top: 1px solid rgba(242, 241, 237, 0.74);
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(360px, 0.36fr);
  gap: 64px;
  padding: 48px 0;
}

.pxs-apartment-row:last-child {
  border-bottom: 1px solid rgba(242, 241, 237, 0.74);
}

.pxs-apartment-intro {
  align-items: start;
}

.pxs-apartment-intro h1 {
  margin: 0;
  font-size: clamp(23px, 2vw, 31px);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.pxs-apartment-intro p {
  max-width: 520px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.045em;
}

.pxs-apartment-facts {
  align-items: end;
}

.pxs-apartment-location-list,
.pxs-apartment-fact-grid {
  display: grid;
  gap: 18px;
}

.pxs-apartment-location-list span,
.pxs-apartment-fact-grid span {
  color: var(--ink);
  font-size: clamp(16px, 1.35vw, 21px);
  font-weight: 600;
  line-height: 1.2;
}

.pxs-apartment-location-list span {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pxs-apartment-location-list span::before {
  content: "";
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 999px;
  box-shadow: inset 0 0 0 5px var(--bg);
  background: currentColor;
  opacity: 0.95;
}

.pxs-apartment-location-list span:nth-child(2)::before {
  content: "\2190";
  width: 21px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  box-shadow: none;
  background: transparent;
  font-size: 14px;
  line-height: 1;
  opacity: 0.95;
}

.pxs-apartment-fact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}

.pxs-apartment-fact-grid strong {
  display: inline-block;
  margin-right: 6px;
  font-size: 24px;
}

.pxs-apartment-pricing {
  grid-template-columns: 1fr;
  gap: 34px;
}

.pxs-pricing-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.pxs-pricing-heading h2 {
  margin: 0;
  font-size: clamp(23px, 2vw, 31px);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.pxs-pricing-table-shell,
.pxs-price-history-shell {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(242, 241, 237, 0.32);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pxs-pricing-table,
.pxs-price-history-table {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
}

.pxs-pricing-table th,
.pxs-pricing-table td,
.pxs-price-history-table th,
.pxs-price-history-table td {
  padding: 18px 18px;
  border-bottom: 1px solid rgba(242, 241, 237, 0.16);
  color: var(--ink);
  text-align: center;
  vertical-align: middle;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.pxs-pricing-table th,
.pxs-price-history-table th {
  color: rgba(242, 241, 237, 0.58);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pxs-pricing-table tbody tr:last-child td,
.pxs-price-history-table tbody tr:last-child td {
  border-bottom: 0;
}

.pxs-pricing-table tbody tr {
  transition: background 0.28s var(--ease);
}

.pxs-pricing-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.045);
}

.pxs-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(242, 241, 237, 0.26);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  font-weight: 600;
}

.pxs-status-pill.pxs-status-available {
  border-color: rgba(211, 224, 190, 0.42);
}

.pxs-status-pill.pxs-status-reserved {
  border-color: rgba(226, 199, 145, 0.42);
  color: rgba(242, 241, 237, 0.78);
}

.pxs-status-pill.pxs-status-sold {
  border-color: rgba(242, 241, 237, 0.18);
  color: rgba(242, 241, 237, 0.42);
}

.pxs-table-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 15px;
  border: 1px solid rgba(242, 241, 237, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.pxs-table-action:hover,
.pxs-table-action:focus-visible {
  border-color: rgba(242, 241, 237, 0.68);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.pxs-price-placeholder {
  display: block;
  margin-bottom: 6px;
}

.pxs-table-action[data-pxs-price-history] {
  min-height: 18px;
  padding: 0 8px;
  font-size: 10px;
  line-height: 1;
}

.pxs-plan-link {
  min-width: 82px;
}

.pxs-parking-pricing {
  margin-top: 42px;
}

.pxs-parking-pricing h3 {
  margin: 0 0 18px;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.pxs-parking-pricing h3 span {
  color: rgba(242, 241, 237, 0.58);
  font-weight: 600;
}

.pxs-parking-table {
  min-width: 720px;
}

body.pxs-price-modal-open,
body.pxs-plan-modal-open {
  overflow: hidden;
}

.pxs-price-modal[hidden],
.pxs-plan-modal[hidden] {
  display: none;
}

.pxs-price-modal,
.pxs-plan-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.pxs-price-modal-backdrop,
.pxs-plan-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 4, 0.72);
  backdrop-filter: blur(18px);
  opacity: 0;
  transition: opacity 0.38s var(--ease);
}

.pxs-price-dialog,
.pxs-plan-dialog {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(242, 241, 237, 0.38);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #111;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.58);
  opacity: 0;
  transform: translate3d(0, 26px, 0) scale(0.97);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.pxs-price-dialog {
  width: min(760px, 100%);
}

.pxs-plan-dialog {
  width: min(1440px, 100%);
  height: calc(100svh - 48px);
  display: block;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  background: #f2f1ed;
  border-color: rgba(20, 20, 20, 0.14);
  box-shadow: 0 28px 92px rgba(0, 0, 0, 0.18);
}

.pxs-price-modal.pxs-is-open .pxs-price-modal-backdrop,
.pxs-plan-modal.pxs-is-open .pxs-plan-modal-backdrop {
  opacity: 1;
}

.pxs-price-modal.pxs-is-open .pxs-price-dialog,
.pxs-plan-modal.pxs-is-open .pxs-plan-dialog {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.pxs-price-dialog > p {
  margin: 0 0 10px;
  color: rgba(242, 241, 237, 0.58);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pxs-price-dialog h2 {
  margin: 0 0 28px;
  max-width: 560px;
  font-size: clamp(31px, 4.5vw, 47px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.pxs-plan-modal-head {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
}

.pxs-plan-modal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.pxs-plan-preview {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 16px;
  background: #f2f1ed;
}

.pxs-price-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(242, 241, 237, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.pxs-plan-modal-actions .pxs-price-modal-close {
  position: static;
}

.pxs-plan-modal-close {
  width: 34px;
  padding: 0;
}

.pxs-plan-download {
  width: 34px;
  min-width: 34px;
  padding: 0;
}

.pxs-plan-download,
.pxs-plan-modal-close {
  border-color: rgba(20, 20, 20, 0.2);
  background: rgba(242, 241, 237, 0.86);
  color: #111;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.pxs-plan-download svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.pxs-price-history-table {
  min-width: 620px;
}

@media (max-width: 640px) {
  .pxs-plan-modal {
    padding: 8px;
  }

  .pxs-plan-dialog {
    width: 100%;
    height: calc(100svh - 16px);
    padding: 0;
  }

  .pxs-plan-modal-head {
    top: 8px;
    right: 8px;
  }

  .pxs-plan-preview {
    border-radius: 16px;
  }
}

.js .pxs-reveal,
.js .pxs-stagger > * {
  opacity: 0;
  transform: translate3d(0, calc(var(--parallax-y, 0px) + 34px), 0);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.js .pxs-reveal.pxs-is-visible,
.js .pxs-stagger.pxs-is-visible > * {
  opacity: 1;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.js .pxs-stagger.pxs-is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.js .pxs-stagger.pxs-is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.js .pxs-stagger.pxs-is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.js .pxs-stagger.pxs-is-visible > *:nth-child(5) { transition-delay: 0.32s; }
.js .pxs-stagger.pxs-is-visible > *:nth-child(6) { transition-delay: 0.40s; }
.js .pxs-stagger.pxs-is-visible > *:nth-child(7) { transition-delay: 0.48s; }
.js .pxs-stagger.pxs-is-visible > *:nth-child(8) { transition-delay: 0.56s; }
.js .pxs-stagger.pxs-is-visible > *:nth-child(9) { transition-delay: 0.64s; }

.pxs-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 18px;
  height: 18px;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.pxs-cursor.pxs-cursor-active {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
}

@media (max-width: 960px) {
  .pxs-apartment-marquee {
    height: 420px;
  }

  .pxs-apartment-marquee-track img {
    flex-basis: 280px;
    width: 280px;
  }

  .pxs-apartment-overview {
    width: min(100% - 32px, 720px);
    padding: 48px 0 72px;
  }

  .pxs-apartment-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 38px 0;
  }

  .pxs-apartment-fact-grid {
    grid-template-columns: 1fr;
  }

  .pxs-pricing-heading {
    display: grid;
  }

  .pxs-pricing-table {
    min-width: 940px;
  }

  .pxs-price-modal {
    padding: 16px;
  }

  .pxs-section,
  .pxs-footer {
    width: calc(100% - 32px);
  }

  .pxs-heritage-heading,
  .pxs-why-head,
  .pxs-why-layout,
  .pxs-contact-hero,
  .pxs-footer {
    grid-template-columns: 1fr;
  }

  .pxs-home-collage {
    position: relative;
    top: auto;
    width: 100vw;
    height: auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 16px;
    margin: -120px 0 0;
    margin-left: calc(50% - 50vw);
  }

  .pxs-heritage-section {
    margin-top: 28px;
    padding-top: 84px;
  }

  .pxs-collage-tile {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
    transform: none;
  }

  .pxs-collage-tile > img {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }

  .pxs-heritage-heading {
    display: grid;
    margin-bottom: 46px;
  }

  .pxs-heritage-track {
    gap: 24px;
  }

  .pxs-heritage-slider .pxs-heritage-card {
    flex-basis: calc((100vw - 80px) / 2);
  }

  .pxs-why-section {
    padding-top: 50px;
  }

  .pxs-why-head {
    margin-bottom: 64px;
  }

  .pxs-why-head > .pxs-pill-link {
    grid-column: auto;
    justify-self: start;
  }

  .pxs-why-layout {
    min-height: auto;
  }

  .pxs-why-copy {
    gap: 86px;
  }

  .pxs-why-feature h3 {
    margin-bottom: 54px;
  }

  .pxs-why-visual {
    position: relative;
    top: auto;
    height: 860px;
    order: -1;
  }

  .pxs-contact-hero {
    min-height: auto;
    align-items: flex-start;
    padding-top: clamp(140px, 24vh, 190px);
    padding-bottom: 16px;
  }

  .pxs-contact-panel {
    width: calc(100% - 32px);
    min-height: auto;
    padding: 26px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pxs-contact-copy {
    min-height: auto;
    gap: 28px;
  }

  .pxs-footer {
    margin: -146px auto 16px;
  }

  .pxs-contact-lead {
    align-self: start;
  }

  .pxs-about-intro,
  .pxs-about-row,
  .pxs-about-row-short,
  .pxs-trust-grid {
    grid-template-columns: 1fr;
  }

  .pxs-about-intro .pxs-pill-link {
    justify-self: start;
  }

  .pxs-about-row,
  .pxs-about-row-short {
    min-height: auto;
    gap: 24px;
    padding: 34px 0 58px;
  }

  .pxs-about-row-short p:nth-child(2) {
    grid-column: auto;
  }

  .pxs-trust-image-card,
  .pxs-trust-quote-card {
    min-height: 520px;
  }

  .pxs-final-cta > div {
    width: calc(100% - 64px);
    padding-left: 32px;
  }

  .pxs-footer > span,
  .pxs-footer nav,
  .pxs-credit {
    grid-column: 1;
  }

  .pxs-footer nav {
    justify-self: center;
  }

  .pxs-footer > span {
    justify-self: start;
  }

  .pxs-credit {
    justify-self: end;
  }
}

@media (max-width: 640px) {
  .pxs-apartment-marquee {
    height: 380px;
    min-height: 380px;
  }

  .pxs-apartment-marquee-track img {
    flex-basis: 250px;
    width: 250px;
  }

  body {
    letter-spacing: -0.018em;
  }

  .pxs-page-home main {
    overflow-x: clip;
  }

  .pxs-site-header {
    top: 18px;
    left: 18px;
    right: 18px;
  }

  .pxs-brand {
    width: 141px;
  }

  body:not(.pxs-page-home) .pxs-brand {
    width: 85px;
  }

  .pxs-menu-dock {
    top: 36px;
    right: 36px;
    width: 58px;
    height: 58px;
    min-height: 58px;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(26,26,26,0.9), rgba(6,6,6,0.76));
    transition:
      width 0.46s cubic-bezier(0.16, 1, 0.3, 1),
      height 0.58s cubic-bezier(0.16, 1, 0.3, 1),
      border-color 0.35s var(--ease),
      background 0.35s var(--ease),
      box-shadow 0.35s var(--ease);
  }

  body.pxs-menu-open .pxs-menu-dock {
    width: min(220px, calc(100vw - 72px));
    height: 248px;
    background: linear-gradient(180deg, rgba(24,24,24,0.94), rgba(4,4,4,0.86));
  }

  .pxs-menu-toggle {
    flex-basis: 58px;
    flex-shrink: 0;
    height: 58px;
  }

  .pxs-nav {
    left: 12px;
    right: 12px;
    top: 58px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 4px 8px 10px;
    transform: translate3d(0, -10px, 0);
  }

  body.pxs-menu-open .pxs-nav {
    transform: translate3d(0, 0, 0);
  }

  .pxs-nav a {
    width: 100%;
    padding: 10px 12px;
    text-align: center;
    font-size: 13px;
    white-space: nowrap;
  }

  .pxs-contact-hero {
    padding-top: clamp(168px, 31vh, 218px);
    padding-bottom: 16px;
  }

  .pxs-contact-panel {
    width: calc(100% - 24px);
    padding: 22px;
    gap: 26px;
  }

  .pxs-contact-title {
    font-size: clamp(28px, 7.2vw, 32px);
    line-height: 0.9;
  }

  .pxs-contact-lead {
    font-size: 14px;
    line-height: 1.48;
  }

  .pxs-contact-form {
    gap: 16px;
  }

  .pxs-home-hero-copy,
  .pxs-about-hero-copy,
  .pxs-image-cta > div {
    width: calc(100% - 32px);
    padding-left: 20px;
    padding-bottom: 92px;
  }

  .pxs-home-hero-copy {
    left: 20px;
    right: 20px;
    bottom: 28px;
    width: auto;
    padding: 0;
  }

  .pxs-pill-button {
    min-height: 40px;
  }

  .pxs-home-hero-image {
    transform: translate3d(0, var(--parallax-y, 0px), 0) scale(0.9);
  }

  .pxs-hero-action-row {
    gap: 14px;
  }

  .pxs-split-title {
    font-size: clamp(38px, 11.7vw, 58px);
  }

  .pxs-about-hero-copy {
    width: calc(100% - 28px);
    min-height: calc(100svh - 32px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 30px;
    padding: clamp(156px, 27vh, 210px) 18px 42px 14px;
  }

  .pxs-about-hero .pxs-split-title {
    align-self: flex-start;
    width: 100%;
    padding-bottom: 0;
    max-width: min(300px, 100%);
    font-size: clamp(29px, 7.9vw, 36px);
    line-height: 0.9;
    letter-spacing: -0.045em;
    text-align: left;
  }

  .pxs-about-tags {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    align-items: start;
    gap: 9px;
    padding-bottom: 24px;
  }

  .pxs-about-center-tag,
  .pxs-about-button {
    grid-area: auto;
  }

  .pxs-about-center-tag {
    position: static;
    max-width: calc(100% - 44px);
    font-size: 14px;
    line-height: 1.38;
    transform: none;
    white-space: normal;
    justify-self: start;
    text-align: left;
  }

  .pxs-about-button {
    justify-self: start;
    margin-top: 12px;
    margin-bottom: 0;
  }

  .pxs-home-collage {
    width: 150vw;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: -86px;
    margin-left: calc(50% - 75vw);
  }

  .pxs-collage-tile {
    aspect-ratio: 3 / 4;
  }

  .pxs-heritage-slider .pxs-heritage-card {
    flex-basis: calc(100vw - 32px);
  }

  .pxs-heritage-section {
    margin-top: 22px;
    padding-top: 78px;
  }

  .pxs-why-section {
    padding-bottom: 88px;
  }

  .pxs-why-head,
  .pxs-why-layout {
    width: calc(100% - 32px);
  }

  .pxs-why-head {
    grid-template-columns: 1fr;
  }

  .pxs-why-visual {
    height: 680px;
  }

  .pxs-why-visual-sequence {
    left: 21%;
    top: 210px;
    width: 58%;
  }

  .pxs-home-finale > div {
    width: calc(100% - 32px);
    padding-left: 20px;
  }

  .pxs-home-finale h2 span {
    display: inline;
  }

  .pxs-home-finale h2 span + span::before {
    content: " ";
  }

  .pxs-about-story {
    padding-top: 72px;
  }

  .pxs-about-intro {
    gap: 22px;
    padding-bottom: 42px;
  }

  .pxs-about-intro h2 {
    font-size: clamp(27px, 7.4vw, 32px);
    line-height: 0.9;
    letter-spacing: -0.04em;
  }

  .pxs-about-intro p,
  .pxs-about-row p,
  .pxs-about-copy-block p {
    font-size: 14.5px;
    line-height: 1.52;
  }

  .pxs-about-row,
  .pxs-about-row-short {
    gap: 18px;
    padding: 30px 0 42px;
  }

  .pxs-about-row .pxs-about-row-title {
    font-size: 14.5px;
    line-height: 1;
  }

  .pxs-about-copy-block h3 {
    font-size: 16px;
    line-height: 0.94;
  }

  .pxs-trust-image-card h2 {
    font-size: clamp(25px, 6.6vw, 31px);
    line-height: 0.9;
    letter-spacing: -0.04em;
  }

  .pxs-trust-image-card,
  .pxs-trust-quote-card {
    min-height: 460px;
  }

  .pxs-trust-image-card > div {
    width: calc(100% - 48px);
    padding: 28px 0 0 24px;
  }

  .pxs-trust-quote-card {
    padding: 24px;
  }

  .pxs-trust-slide {
    inset: 24px;
    padding-bottom: 46px;
  }

  .pxs-trust-dots {
    left: 24px;
    bottom: 24px;
  }

  .pxs-trust-slide blockquote {
    font-size: 16px;
    line-height: 1.46;
  }

  .pxs-final-cta > div {
    width: calc(100% - 32px);
    padding-left: 20px;
    padding-top: clamp(74px, 14vh, 104px);
  }

  .pxs-final-cta h2 {
    font-size: clamp(31px, 9vw, 40px);
  }

  .pxs-pricing-table-shell {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .pxs-pricing-table {
    display: block;
    min-width: 0;
  }

  .pxs-pricing-table thead {
    display: none;
  }

  .pxs-pricing-table tbody {
    display: grid;
    gap: 10px;
  }

  .pxs-pricing-table tr {
    display: grid;
    padding: 14px;
    border: 1px solid rgba(242, 241, 237, 0.22);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  }

  .pxs-pricing-table th,
  .pxs-pricing-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(242, 241, 237, 0.12);
    font-size: 14px;
    line-height: 1.35;
    text-align: right;
    white-space: normal;
  }

  .pxs-pricing-table td:last-child {
    border-bottom: 0;
  }

  .pxs-pricing-table td::before {
    flex: 0 0 44%;
    color: rgba(242, 241, 237, 0.56);
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .pxs-pricing-table:not(.pxs-parking-table) td:nth-child(1)::before { content: "Nr apartamentu"; }
  .pxs-pricing-table:not(.pxs-parking-table) td:nth-child(2)::before { content: "Pi\0119tro"; }
  .pxs-pricing-table:not(.pxs-parking-table) td:nth-child(3)::before { content: "Ilo\015B\0107 pokoi"; }
  .pxs-pricing-table:not(.pxs-parking-table) td:nth-child(4)::before { content: "Powierzchnia"; }
  .pxs-pricing-table:not(.pxs-parking-table) td:nth-child(5)::before { content: "Status"; }
  .pxs-pricing-table:not(.pxs-parking-table) td:nth-child(6)::before { content: "Cena"; }
  .pxs-pricing-table:not(.pxs-parking-table) td:nth-child(7)::before { content: "Karta lokalu"; }
  .pxs-parking-table td:nth-child(1)::before { content: "Nr miejsca"; }
  .pxs-parking-table td:nth-child(2)::before { content: "Poziom"; }
  .pxs-parking-table td:nth-child(3)::before { content: "Status"; }
  .pxs-parking-table td:nth-child(4)::before { content: "Cena"; }

  .pxs-status-pill,
  .pxs-table-action {
    flex: 0 0 auto;
  }

  .pxs-cursor {
    display: none;
  }

  .pxs-image-cta.pxs-final-cta > div {
    width: calc(100% - 64px);
    margin-left: auto;
    margin-right: auto;
    padding: clamp(44px, 8vh, 64px) 0 0;
  }

  .pxs-image-cta.pxs-final-cta h2 {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: clamp(25px, 7vw, 29px);
    line-height: 0.9;
  }

  .pxs-image-cta.pxs-final-cta .pxs-pill-link {
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }

  .pxs-footer {
    width: calc(100% - 32px);
    margin: -124px auto 16px;
    padding: 24px 0 30px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    column-gap: 12px;
    row-gap: 16px;
    font-size: 13px;
  }

  .pxs-footer::before {
    grid-column: 1 / -1;
    margin-bottom: 2px;
  }

  .pxs-footer nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    font-size: 13px;
  }

  .pxs-footer > span {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
    margin-left: 10px;
    white-space: nowrap;
  }

  .pxs-credit {
    grid-column: 2;
    grid-row: 3;
    justify-self: end;
    margin-right: 10px;
    font-size: 12.5px;
  }

  .pxs-credit-heart {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .pxs-page-home .pxs-brand,
  .pxs-page-home .pxs-hero-action-row,
  .pxs-page-home .pxs-home-hero .pxs-split-title > span > span {
    animation-delay: 0s !important;
  }
}

.pxs-text-page {
  background: var(--bg);
}

.pxs-text-hero {
  position: relative;
  min-height: min(720px, calc(100svh - 32px));
  display: flex;
  align-items: flex-end;
  padding: 0;
  background: #131313;
  overflow: hidden;
}

.pxs-text-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.pxs-text-hero-panel {
  position: relative;
  z-index: 1;
  width: min(1368px, calc(100% - 40px));
  margin: 0 auto 16px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(242, 241, 237, 0.82);
  border-radius: 14px;
  background: rgba(19, 19, 19, 0.9);
  backdrop-filter: blur(16px);
}

.pxs-text-hero-panel p {
  margin: 0 0 clamp(18px, 3vw, 36px);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pxs-text-hero-panel h1 {
  max-width: 940px;
  margin: 0;
  font-family: "Switzer", "Geist", sans-serif;
  font-size: clamp(33px, 5.25vw, 81px);
  line-height: 0.88;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.pxs-text-content-section {
  width: min(1368px, calc(100% - 40px));
  margin: clamp(16px, 3vw, 28px) auto clamp(80px, 10vw, 140px);
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(242, 241, 237, 0.18);
  border-radius: 14px;
  background: #131313;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.pxs-text-page-content {
  max-width: 1060px;
  color: rgba(242, 241, 237, 0.82);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.68;
  letter-spacing: -0.01em;
}

.pxs-text-page-content > * {
  margin-top: 0;
  margin-bottom: 1.35em;
}

.pxs-text-page-content > :last-child {
  margin-bottom: 0;
}

.pxs-text-page-content h1,
.pxs-text-page-content h2,
.pxs-text-page-content h3,
.pxs-text-page-content h4 {
  margin-top: 1.6em;
  margin-bottom: 0.55em;
  color: var(--ink);
  font-family: "Switzer", "Geist", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.pxs-text-page-content h2 {
  font-size: clamp(23px, 2.55vw, 36px);
}

.pxs-text-page-content h3 {
  font-size: clamp(17px, 1.75vw, 24px);
}

.pxs-text-page-content a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.pxs-text-page-content ul,
.pxs-text-page-content ol {
  padding-left: 1.2em;
}

.pxs-text-page-content li + li {
  margin-top: 0.45em;
}

.pxs-text-page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.pxs-text-page-content .alignwide {
  max-width: min(1030px, calc(100vw - 72px));
  margin-left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 960px) {
  .pxs-text-hero {
    min-height: auto;
    padding-top: clamp(148px, 24vh, 190px);
    padding-bottom: 16px;
  }

  .pxs-text-hero-panel {
    width: calc(100% - 32px);
    padding: 26px;
  }

  .pxs-text-content-section {
    width: calc(100% - 32px);
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .pxs-text-hero {
    padding-top: clamp(162px, 30vh, 214px);
  }

  .pxs-text-hero-panel,
  .pxs-text-content-section {
    width: calc(100% - 24px);
    padding: 22px;
    border-radius: 12px;
  }

  .pxs-text-hero-panel h1 {
    font-size: clamp(26px, 9vw, 41px);
  }
}
