:root {
  --bg: #f3eee6;
  --bg-soft: #eee7dd;
  --bg-card: #f9f9f9;
  --bg-light: #ffffff;
  --text: #111214;
  --muted: #6d6a64;
  --dark: #101114;
  --accent: #ff6a3d;
  --accent-dark: #c94e2b;
  --accent-light: #ffb199;
  --city-cyan: #00d4c8;
  --city-violet: #6f4cff;
  --border: rgba(17, 18, 20, 0.1);
  --border-light: rgba(255, 255, 255, 0.16);
  --white: #ffffff;
  --radius-lg: 32px;
  --radius-md: 24px;
  --shadow: 0 20px 70px rgba(16, 17, 20, 0.1);
  --shadow-strong: 0 28px 90px rgba(16, 17, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img,
svg,
iframe {
  max-width: 100%;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(243, 238, 230, 0.82);
  border-bottom: 1px solid rgba(17, 18, 20, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  color: var(--text);
  font-size: 23px;
  letter-spacing: -0.05em;
}

.logo span {
  font-weight: 500;
}

.logo strong {
  color: var(--accent);
  font-weight: 900;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  opacity: 0.72;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--city-cyan));
  transition: width 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  opacity: 1;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.section {
  padding: 112px 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.hero h1,
.section h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.section h2 {
  max-width: 840px;
  color: var(--text);
  font-size: clamp(36px, 5.4vw, 72px);
}

.section-copy > p:not(.section-kicker),
.booking-header > p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-copy p {
  max-width: 650px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 64px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.05fr);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 106, 61, 0.95), transparent 25%),
    radial-gradient(circle at 72% 28%, rgba(0, 212, 200, 0.56), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(111, 76, 255, 0.5), transparent 30%),
    linear-gradient(135deg, #111214 0%, #191b20 48%, #2d241f 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(16, 17, 20, 0.2), rgba(16, 17, 20, 0.68)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.045) 0,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px,
      transparent 120px
    );
}

.hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -16vw;
  width: 48vw;
  height: 48vw;
  min-width: 380px;
  min-height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 990px;
  padding: 150px 0 90px;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(48px, 8vw, 108px);
}

.hero-text {
  max-width: 720px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--dark);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  box-shadow: 0 18px 46px rgba(255, 106, 61, 0.28);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
}

.apartment-section {
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 106, 61, 0.08), transparent 28%),
    var(--bg);
}

.feature-card {
  position: relative;
  padding: 36px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(249, 249, 249, 0.86));
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--city-cyan));
  opacity: 0.18;
}

.feature-card h3 {
  position: relative;
  margin: 0 0 22px;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.feature-card ul {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-card li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.feature-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--city-cyan));
}

.apartment-gallery {
  grid-column: 1 / -1;
  margin-top: 10px;
  overflow: hidden;
}

.gallery-header {
  max-width: none;
  margin-bottom: 26px;
}

.gallery-header h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.photo-slider {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.photo-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: photoSlide 36s linear infinite;
}

.photo-slider:hover .photo-track {
  animation-play-state: paused;
}

.photo-card,
.location-photo-card {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  padding: 0;
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: zoom-in;
}

.photo-card {
  flex: 0 0 clamp(260px, 30vw, 390px);
  aspect-ratio: 1 / 1;
}

.location-photo-card {
  width: 100%;
  min-height: 440px;
  border-color: var(--border-light);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.photo-card img,
.location-photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.location-photo-card img {
  min-height: 440px;
}

.photo-card::after,
.location-photo-card::after {
  content: "Powiększ";
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(16, 17, 20, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.photo-card:hover img,
.photo-card:focus-visible img,
.location-photo-card:hover img,
.location-photo-card:focus-visible img {
  transform: scale(1.06);
  filter: brightness(0.9);
}

.photo-card:hover::after,
.photo-card:focus-visible::after,
.location-photo-card:hover::after,
.location-photo-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.photo-card:focus,
.location-photo-card:focus {
  outline: none;
}

.photo-card:focus-visible,
.location-photo-card:focus-visible {
  outline: 3px solid rgba(255, 106, 61, 0.42);
  outline-offset: 4px;
}

@keyframes photoSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 11px));
  }
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px 100px 42px;
  background: rgba(8, 9, 11, 0.92);
}

.photo-lightbox.is-open {
  display: flex;
}

.photo-lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 1001;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.photo-lightbox-close:hover,
.photo-lightbox-close:focus-visible {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.16);
  transform: scale(1.04);
}

.photo-lightbox-close:focus {
  outline: none;
}

.photo-lightbox-close:focus-visible {
  outline: 3px solid rgba(255, 106, 61, 0.42);
  outline-offset: 4px;
}

.photo-lightbox-nav {
  position: fixed;
  top: 50%;
  z-index: 1001;
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 62px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.photo-lightbox-nav[hidden],
.photo-lightbox-nav.is-hidden {
  display: none;
}

.photo-lightbox-nav:hover,
.photo-lightbox-nav:focus-visible {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-50%) scale(1.04);
}

.photo-lightbox-nav:focus {
  outline: none;
}

.photo-lightbox-nav:focus-visible {
  outline: 3px solid rgba(255, 106, 61, 0.42);
  outline-offset: 4px;
}

.photo-lightbox-prev {
  left: 28px;
  padding-bottom: 7px;
  padding-right: 4px;
}

.photo-lightbox-next {
  right: 28px;
  padding-bottom: 7px;
  padding-left: 4px;
}

.photo-lightbox-content {
  width: min(1100px, 100%);
  display: grid;
  gap: 18px;
}

.photo-lightbox-image {
  max-width: 100%;
  max-height: calc(100vh - 190px);
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  object-fit: contain;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

.photo-lightbox-caption {
  max-width: 900px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  text-align: center;
}

.highlights-section,
.location-section {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 106, 61, 0.32), transparent 30%),
    radial-gradient(circle at 84% 28%, rgba(0, 212, 200, 0.2), transparent 28%),
    linear-gradient(135deg, #101114 0%, #191b20 55%, #111214 100%);
  overflow: hidden;
}

.highlights-section::after,
.location-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 140px
    );
  pointer-events: none;
}

.highlights-section .container,
.location-section .container {
  position: relative;
  z-index: 1;
}

.highlights-section .section-kicker,
.location-section .section-kicker {
  color: var(--city-cyan);
}

.highlights-section h2,
.location-section h2 {
  color: var(--white);
}

.highlights-section h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(38px, 3.8vw, 52px);
}

.location-section .section-copy > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.info-card {
  --card-background-color: rgba(255, 255, 255, 0.04);
  --card-border-color: rgba(255, 255, 255, 0.13);
  --card-hover-border-color: rgba(255, 106, 61, 0.42);
  --card-label-color: var(--white);
  --card-text-color: rgba(255, 255, 255, 0.68);
  --card-icon-color: rgba(255, 255, 255, 0.86);
  --card-icon-background-color: rgba(255, 255, 255, 0.08);
  --card-icon-border-color: rgba(255, 255, 255, 0.13);
  --card-hover-icon-color: var(--dark);
  --card-hover-icon-background-color: rgba(255, 106, 61, 0.94);
  --card-hover-icon-border-color: rgba(255, 177, 153, 0.58);
  --card-shine-opacity: 0.22;
  --card-shine-gradient: conic-gradient(
    from 205deg at 50% 50%,
    rgba(255, 106, 61, 0) 0deg,
    rgba(255, 106, 61, 0.95) 26deg,
    rgba(0, 212, 200, 0.34) 285deg,
    rgba(255, 106, 61, 0) 360deg
  );
  --card-line-color: rgba(255, 255, 255, 0.105);
  --card-tile-color: rgba(0, 212, 200, 0.07);

  position: relative;
  min-height: 246px;
  padding: 116px 26px 30px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(16, 17, 20, 0.2);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.12),
    0 0 0 1px var(--card-border-color);
  overflow: hidden;
  cursor: default;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background-color: var(--card-background-color);
  pointer-events: none;
}

.info-card::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: 24px;
  z-index: 2;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  opacity: 0.78;
  transition: width 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.26),
    0 0 0 1px var(--card-hover-border-color);
}

.info-card:hover::after {
  width: 26px;
  background: var(--accent-light);
  opacity: 1;
}

.card-icon {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: inline-flex;
  padding: 9px;
  border-radius: 999px;
  color: var(--card-icon-color);
  background: var(--card-icon-background-color);
  border: 1px solid var(--card-icon-border-color);
  backdrop-filter: blur(3px);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.info-card:hover .card-icon {
  color: var(--card-hover-icon-color);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-color: var(--card-hover-icon-border-color);
}

.card-number {
  position: absolute;
  top: 0;
  right: 16px;
  z-index: 2;
  width: 78px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--accent-light);
  background:
    linear-gradient(135deg, rgba(255, 106, 61, 0.15), rgba(255, 177, 153, 0.06));
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  text-shadow: 0 0 18px rgba(255, 177, 153, 0.25);
}

.info-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--card-label-color);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.info-card p {
  position: relative;
  z-index: 2;
  max-width: calc(100% - 10px);
  margin: 18px 0 0;
  color: var(--card-text-color);
  font-size: 16px;
}

.info-card .shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.info-card .shine::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 55%;
  width: 150%;
  padding-bottom: 150%;
  border-radius: 50%;
  opacity: var(--card-shine-opacity);
  filter: blur(35px);
  transform: translateX(-50%);
  background-image: var(--card-shine-gradient);
}

.info-card:hover .shine {
  opacity: 1;
}

.card-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
  mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
}

.card-background .tiles {
  opacity: 0;
  transition: opacity 0.25s ease;
}

.info-card:hover .tiles {
  opacity: 1;
  transition-delay: 0.25s;
}

.tile {
  position: absolute;
  background-color: var(--card-tile-color);
  animation-duration: 8s;
  animation-iteration-count: infinite;
  opacity: 0;
}

.info-card:hover .tile {
  animation-name: cardTile;
}

.tile-1 {
  top: 0;
  left: 0;
  height: 10%;
  width: 22.5%;
}

.tile-2 {
  top: 0;
  left: 22.5%;
  height: 10%;
  width: 27.5%;
  animation-delay: -6s;
}

.tile-3 {
  top: 0;
  left: 50%;
  height: 10%;
  width: 27.5%;
  animation-delay: -4s;
}

.tile-4 {
  top: 0;
  left: 77.5%;
  height: 10%;
  width: 22.5%;
  animation-delay: -2s;
}

.tile-5 {
  top: 10%;
  left: 0;
  height: 22.5%;
  width: 22.5%;
  animation-delay: -4s;
}

.tile-6 {
  top: 10%;
  left: 22.5%;
  height: 22.5%;
  width: 27.5%;
  animation-delay: -2s;
}

.tile-7 {
  top: 10%;
  left: 50%;
  height: 22.5%;
  width: 27.5%;
}

.tile-8 {
  top: 10%;
  left: 77.5%;
  height: 22.5%;
  width: 22.5%;
  animation-delay: -4s;
}

.tile-9 {
  top: 32.5%;
  left: 50%;
  height: 22.5%;
  width: 27.5%;
  animation-delay: -6s;
}

.tile-10 {
  top: 32.5%;
  left: 77.5%;
  height: 22.5%;
  width: 22.5%;
  animation-delay: -2s;
}

@keyframes cardTile {
  0%,
  12.5%,
  100% {
    opacity: 1;
  }

  25%,
  82.5% {
    opacity: 0;
  }
}

.card-background .line {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.card-background .line::before,
.card-background .line::after {
  content: "";
  position: absolute;
  background-color: var(--card-line-color);
  transition: transform 0.35s ease;
}

.card-background .line::before {
  left: 0;
  right: 0;
  height: 1px;
  transform-origin: 0 50%;
  transform: scaleX(0);
}

.card-background .line::after {
  top: 0;
  bottom: 0;
  width: 1px;
  transform-origin: 50% 0;
  transform: scaleY(0);
}

.card-background .line-1::before {
  top: 10%;
}

.card-background .line-1::after {
  left: 22.5%;
}

.card-background .line-2::before {
  top: 32.5%;
}

.card-background .line-2::after {
  left: 50%;
}

.card-background .line-3::before {
  top: 55%;
}

.card-background .line-3::after {
  right: 22.5%;
}

.card-background .line-1::before,
.card-background .line-1::after {
  transition-delay: 0.3s;
}

.card-background .line-2::before,
.card-background .line-2::after {
  transition-delay: 0.15s;
}

.info-card:hover .line {
  opacity: 1;
  transition-duration: 0.15s;
}

.info-card:hover .line::before {
  transform: scaleX(1);
}

.info-card:hover .line::after {
  transform: scaleY(1);
}

.info-card:hover .line-1::before,
.info-card:hover .line-1::after {
  transition-delay: 0s;
}

.info-card:hover .line-2::before,
.info-card:hover .line-2::after {
  transition-delay: 0.15s;
}

.info-card:hover .line-3::before,
.info-card:hover .line-3::after {
  transition-delay: 0.3s;
}

.booking-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 106, 61, 0.08), transparent 28%),
    radial-gradient(circle at 88% 40%, rgba(0, 212, 200, 0.08), transparent 28%),
    var(--white);
}

.booking-header {
  max-width: none;
  margin-bottom: 36px;
}

.booking-header h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(38px, 3.8vw, 52px);
}

.booking-header > p {
  max-width: 760px;
}

.booking-widgets {
  display: grid;
  gap: 30px;
}

.calendar-accordion,
.booking-online-accordion,
.booking-box {
  border: 1px solid rgba(17, 18, 20, 0.09);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.calendar-accordion,
.booking-online-accordion {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.calendar-accordion {
  contain: layout paint;
}

.booking-online-accordion {
  contain: none;
}

.booking-online-accordion.is-open {
  overflow: visible;
}

.calendar-accordion-trigger,
.booking-online-trigger {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 30px;
  border: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(249, 249, 249, 0.28)),
    var(--bg-soft);
  color: var(--text);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.calendar-accordion-trigger:focus,
.booking-online-trigger:focus {
  outline: none;
}

.calendar-accordion-trigger:focus-visible,
.booking-online-trigger:focus-visible {
  outline: 3px solid rgba(255, 106, 61, 0.34);
  outline-offset: -3px;
}

.calendar-accordion-copy,
.booking-online-copy {
  display: grid;
  gap: 8px;
}

.calendar-accordion-step,
.booking-online-step {
  margin: 0;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.calendar-accordion-title,
.booking-online-title {
  margin: 0;
  color: var(--text);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.calendar-accordion-icon,
.booking-online-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 18, 20, 0.18);
  border-radius: 999px;
  color: var(--text);
  background: var(--bg-card);
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.calendar-accordion-trigger:hover .calendar-accordion-icon,
.calendar-accordion-trigger:focus-visible .calendar-accordion-icon,
.booking-online-trigger:hover .booking-online-icon,
.booking-online-trigger:focus-visible .booking-online-icon {
  border-color: rgba(255, 106, 61, 0.52);
  background: var(--white);
}

.calendar-accordion-panel {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(-10px);
  transition:
    max-height 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.62s;
  will-change: max-height, opacity, transform;
}

.booking-online-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    grid-template-rows 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: grid-template-rows, opacity, transform;
}

.calendar-accordion-content,
.booking-online-content {
  min-height: 0;
  padding: 0 24px 24px;
  transform: translateZ(0);
}

.booking-online-panel > .booking-online-content {
  overflow: hidden;
}

.calendar-accordion.is-open .calendar-accordion-panel {
  max-height: 940px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    max-height 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease 0.08s,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

.booking-online-accordion.is-open .booking-online-panel {
  grid-template-rows: 1fr;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    grid-template-rows 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease 0.08s,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-online-accordion.is-open .booking-online-panel > .booking-online-content {
  overflow: visible;
}

.calendar-accordion.is-open .calendar-accordion-icon,
.booking-online-accordion.is-open .booking-online-icon {
  transform: rotate(45deg);
  border-color: transparent;
  color: var(--dark);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.calendarWidget {
  width: 100%;
  padding: 18px;
  border-radius: 24px;
  background: var(--bg-card) !important;
  overflow: hidden;
  transform: translateZ(0);
}

.calendarContent {
  width: 100%;
  min-height: 360px;
  border-radius: 18px;
  background: var(--bg-card) !important;
  transform: translateZ(0);
}

.calendarWidget *,
.calendarContent * {
  box-sizing: border-box;
}

.calendarWidget .calendarContent,
.calendarWidget .calendarContent > div {
  background-color: var(--bg-card) !important;
}

.booking-box {
  min-height: 0;
  padding: 24px;
  box-shadow: none;
  overflow: visible;
}

.booking-online-content .booking-box {
  border: 0;
  border-radius: 24px;
}

#apartmentIframe2563118 {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 640px;
  border-radius: 24px;
  background: var(--bg-card) !important;
  overflow: visible;
}

#apartmentIframe2563118 iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  height: auto;
  border: 0;
  background: var(--bg-card);
}

.booking-iframe-mask {
  position: absolute;
  top: 20px;
  right: 80px;
  width: 60px;
  height: 50px;
  background: #fbfbfb;
  border-radius: 10px;
  pointer-events: none;
  z-index: 999999;
}

@media (max-width: 1130px) {
  .booking-iframe-mask {
    right: 20px;
  }
}

.booking-partner-card {
  display: grid;
  grid-template-columns: minmax(220px, 240px) minmax(0, 1fr);
  grid-template-areas:
    "label label"
    "logo tabs";
  align-items: center;
  column-gap: 18px;
  row-gap: 14px;
  padding: 20px 26px;
  border: 1px solid rgba(17, 18, 20, 0.09);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(249, 249, 249, 0.88)),
    var(--bg-card);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.booking-partner-brand {
  display: contents;
}

.booking-partner-label {
  grid-area: label;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-partner-logo {
  grid-area: logo;
  width: min(220px, 100%);
  display: inline-flex;
  align-items: center;
  justify-self: start;
  align-self: center;
  padding: 0;
  border-radius: 14px;
}

.booking-partner-logo img {
  width: 100%;
  max-height: 52px;
  display: block;
  object-fit: contain;
}

.booking-partner-logo:focus {
  outline: none;
}

.booking-partner-logo:focus-visible {
  outline: 3px solid rgba(255, 106, 61, 0.34);
  outline-offset: 4px;
}

.booking-partner-tabs {
  grid-area: tabs;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 4px 0 8px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.booking-partner-tabs a {
  flex: 0 0 auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(17, 18, 20, 0.11);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.booking-partner-tabs a:hover,
.booking-partner-tabs a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 61, 0.42);
  color: var(--dark);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(16, 17, 20, 0.09);
}

.booking-partner-tabs a:focus {
  outline: none;
}

.booking-partner-tabs a:focus-visible {
  outline: 3px solid rgba(255, 106, 61, 0.34);
  outline-offset: 3px;
}

.contact-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(111, 76, 255, 0.06), transparent 28%),
    radial-gradient(circle at 86% 30%, rgba(255, 106, 61, 0.07), transparent 28%),
    var(--bg-light);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 64px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-card {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 24px 64px 24px 24px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(249, 249, 249, 0.88));
  box-shadow: 0 10px 34px rgba(16, 17, 20, 0.06);
  cursor: pointer;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-card::after {
  content: "\2192";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--dark);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  box-shadow: 0 10px 22px rgba(255, 106, 61, 0.18);
  opacity: 0.86;
  transform: translateY(-50%);
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  border-color: rgba(255, 106, 61, 0.34);
  background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(249, 249, 249, 0.92));
  box-shadow: 0 18px 50px rgba(16, 17, 20, 0.1);
}

.contact-card:hover::after,
.contact-card:focus-visible::after {
  opacity: 1;
  transform: translate(4px, -50%) scale(1.06);
  box-shadow: 0 14px 28px rgba(255, 106, 61, 0.26);
}

.contact-card:focus {
  outline: none;
}

.contact-card:focus-visible {
  outline: 3px solid rgba(255, 106, 61, 0.34);
  outline-offset: 4px;
}

.contact-card span {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  color: var(--text);
  font-size: 20px;
  letter-spacing: -0.035em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.contact-card:hover strong,
.contact-card:focus-visible strong {
  color: var(--accent-dark);
  transform: translateX(2px);
}

.site-footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.68);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 106, 61, 0.22), transparent 26%),
    linear-gradient(135deg, #101114, #191b20);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--white);
  font-weight: 800;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.cookie-settings-link {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cookie-settings-link:hover,
.cookie-settings-link:focus-visible {
  text-decoration: underline;
}

@media (max-width: 920px) {
  .main-nav {
    gap: 16px;
    font-size: 12px;
  }

  .split,
  .split.reverse,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .highlights-section h2,
  .booking-header h2 {
    white-space: normal;
    font-size: clamp(34px, 9vw, 54px);
  }

  .photo-card {
    flex-basis: clamp(240px, 48vw, 340px);
  }

  .location-photo-card,
  .location-photo-card img {
    min-height: 340px;
  }

  .booking-box {
    min-height: 0;
  }

  #apartmentIframe2563118 {
    min-height: 720px;
  }

  .booking-online-accordion.is-open .booking-online-panel {
    grid-template-rows: 1fr;
    overflow: visible;
  }


  .booking-partner-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "logo"
      "tabs";
    align-items: start;
    row-gap: 14px;
  }

  .booking-partner-logo {
    width: min(220px, 100%);
  }

  .booking-partner-tabs {
    width: 100%;
    justify-content: flex-start;
  }
}


@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .main-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .main-nav a {
    width: 100%;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid rgba(17, 18, 20, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.54);
    text-align: center;
    opacity: 1;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:nth-child(5) {
    grid-column: 1 / -1;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 78px 0;
  }

  .hero h1 {
    font-size: clamp(44px, 15vw, 72px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 76px 0;
  }

  .section h2 {
    font-size: clamp(24px, 3.2vw, 38px);
  }

  .feature-card,
  .info-card,
  .location-photo-card,
  .calendar-accordion,
  .booking-online-accordion,
  .booking-box {
    border-radius: 22px;
  }

  .feature-card {
    padding: 22px;
  }

  .info-card {
    min-height: 236px;
    padding: 108px 24px 30px;
  }

  .card-icon {
    top: 22px;
    left: 22px;
  }

  .card-number {
    right: 14px;
    width: 72px;
    height: 76px;
    font-size: 23px;
  }

  .info-card::after {
    right: 28px;
    bottom: 22px;
  }

  .gallery-header h3 {
    font-size: clamp(28px, 9vw, 42px);
    white-space: normal;
  }

  .photo-track {
    gap: 14px;
    animation-duration: 30s;
  }

  .photo-card {
    flex-basis: 250px;
    border-radius: 22px;
  }

  .photo-lightbox {
    padding: 82px 16px 32px;
  }

  .photo-lightbox-close {
    top: 18px;
    right: 18px;
    width: 54px;
    height: 54px;
    font-size: 34px;
  }

  .photo-lightbox-nav {
    top: auto;
    bottom: 28px;
    width: 54px;
    height: 54px;
    font-size: 46px;
    transform: none;
  }

  .photo-lightbox-nav:hover,
  .photo-lightbox-nav:focus-visible {
    transform: scale(1.04);
  }

  .photo-lightbox-prev {
    left: 18px;
  }

  .photo-lightbox-next {
    right: 18px;
  }

  .photo-lightbox-image {
    max-height: calc(100vh - 220px);
    border-radius: 22px;
  }

  .photo-lightbox-caption {
    padding: 0 64px;
    font-size: 15px;
  }

  .booking-widgets {
    gap: 20px;
  }

  .booking-box {
    min-height: 0;
    padding: 12px;
    overflow: visible;
  }

  .booking-partner-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "logo"
      "tabs";
    gap: 16px;
    padding: 18px;
    overflow: hidden;
  }

  .booking-partner-label {
    grid-area: label;
    font-size: 11px;
    line-height: 1.2;
  }

  .booking-partner-logo {
    grid-area: logo;
    width: min(205px, 100%);
    justify-self: start;
  }

  .booking-partner-logo img {
    max-height: 50px;
  }

  .booking-partner-tabs {
    grid-area: tabs;
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 0;
    overflow: visible;
    scrollbar-width: none;
  }

  .booking-partner-tabs::-webkit-scrollbar {
    display: none;
  }

  .booking-partner-tabs a {
    width: 100%;
    min-width: 0;
    min-height: 40px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11.5px;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .booking-partner-tabs a:last-child {
    grid-column: 1 / -1;
  }

  .calendar-accordion-trigger,
  .booking-online-trigger {
    min-height: 84px;
    padding: 20px;
  }

  .calendar-accordion-title,
  .booking-online-title {
    font-size: 24px;
  }

  .calendar-accordion-icon,
  .booking-online-icon {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }

  .calendar-accordion-content,
  .booking-online-content {
    padding: 0 12px 12px;
  }

  .calendar-accordion.is-open .calendar-accordion-panel {
    max-height: 980px;
  }

  .booking-online-accordion.is-open .booking-online-panel {
    grid-template-rows: 1fr;
    overflow: visible;
  }

  .calendarWidget {
    padding: 10px;
    border-radius: 18px;
  }

  .calendarContent {
    min-height: 360px;
  }

  #apartmentIframe2563118 {
    min-height: 760px;
    border-radius: 20px;
  }

  .contact-card {
    padding-right: 58px;
  }

  .contact-card::after {
    right: 18px;
  }

  .contact-card strong {
    font-size: 18px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .booking-partner-tabs {
    grid-template-columns: 1fr;
  }

  .booking-partner-tabs a:last-child {
    grid-column: auto;
  }
}


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

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

  .photo-track,
  .tile {
    animation: none;
  }
}