/* Park Residence — consolidated site styles */

/* 01 — base.css */
:root {
  --color-ink: #191713;
  --color-green: #7ac70c;
  --color-gold: #c5a37d;
  --color-project: #e5f7fc;
  --header-height: 82px;
  --content-width: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: #fff;
  font-family: Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}

body.has-open-lightbox { overflow: hidden; }

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

/* 02 — header.css */
.site-header {
  position: relative;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(252, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(30, 45, 38, 0.025);
}

.site-header__inner {
  width: min(calc(100% - 48px), 1220px);
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.site-header__logo {
  flex: 0 0 auto;
  text-decoration: none;
}

.site-header__logo img {
  width: 100px;
  height: 67px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  margin-left: auto;
  font: 600 13px/1 "Montserrat", Arial, sans-serif;
  letter-spacing: 0.12px;
  white-space: nowrap;
}

.site-nav > a,
.site-nav__dropdown-toggle {
  position: relative;
  border: 0;
  padding: 31px 0;
  color: #0c0b09;
  background: transparent;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease;
}

.site-nav > a:not(.site-nav__project)::after,
.site-nav__dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 1px;
  background: #c5a37d;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav__dropdown-toggle:hover::after,
.site-nav__dropdown-toggle:focus-visible::after {
  transform: scaleX(1);
}

.site-nav > a:not(.site-nav__project):hover,
.site-nav > a:not(.site-nav__project):focus-visible,
.site-nav > a.is-active,
.site-nav__dropdown-toggle:hover,
.site-nav__dropdown-toggle:focus-visible {
  color: #9f7955;
}

.site-nav > a.is-active::after {
  transform: scaleX(1);
}

.site-nav > a.site-nav__project {
  display: inline-flex;
  align-items: center;
  margin-right: -4px;
  padding: 10px 12px;
  border: 1px solid rgba(197, 163, 125, 0.2);
  border-radius: 999px;
  color: #a9825c;
  background: rgba(197, 163, 125, 0.055);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-nav > a.site-nav__project:hover,
.site-nav > a.site-nav__project:focus-visible {
  border-color: rgba(197, 163, 125, 0.42);
  color: #7d5b3d;
  background: rgba(197, 163, 125, 0.11);
}

@media (min-width: 881px) {
  .site-nav > a.is-active,
  .site-nav__dropdown-toggle.is-active {
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid rgba(197, 163, 125, 0.2);
    border-radius: 999px;
    color: #a9825c;
    background: rgba(197, 163, 125, 0.055);
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
  }

  .site-nav > a.is-active::after,
  .site-nav__dropdown-toggle.is-active::after {
    display: none;
  }

  .site-nav > a.is-active:hover,
  .site-nav > a.is-active:focus-visible,
  .site-nav__dropdown-toggle.is-active:hover,
  .site-nav__dropdown-toggle.is-active:focus-visible {
    border-color: rgba(197, 163, 125, 0.42);
    color: #7d5b3d;
    background: rgba(197, 163, 125, 0.11);
  }
}

.site-nav__dropdown {
  position: relative;
}

.site-nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-nav__dropdown-toggle span {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  font-size: 0;
  transform: translateY(-2px) rotate(45deg);
}

.site-nav__dropdown-menu {
  position: absolute;
  top: calc(100% - 10px);
  left: -18px;
  width: 146px;
  padding: 9px 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(6px);
  background: #fff;
  box-shadow: 0 13px 35px rgba(28, 32, 26, 0.14);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}

.site-nav__dropdown:hover .site-nav__dropdown-menu,
.site-nav__dropdown:focus-within .site-nav__dropdown-menu,
.site-nav__dropdown.is-open .site-nav__dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.site-nav__dropdown-menu a {
  display: block;
  padding: 9px 18px;
  color: #23211c;
  font-size: 13px;
  text-decoration: none;
}

.site-nav__dropdown-menu a:hover,
.site-nav__dropdown-menu a:focus-visible {
  color: #9f7955;
  background: #fbf8f4;
}

.site-nav__mobile-socials {
  display: none;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
}

.header-socials a {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(197, 163, 125, 0.24);
  border-radius: 50%;
  color: #a9825c;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-socials a:hover,
.header-socials a:focus-visible {
  border-color: #c5a37d;
  color: #fff;
  background: #c5a37d;
  transform: translateY(-2px);
}

.header-socials svg,
.site-nav__mobile-socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.header-socials .social-icon-instagram,
.site-nav__mobile-socials .social-icon-instagram {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.header-socials .social-icon-fill,
.site-nav__mobile-socials .social-icon-fill {
  fill: currentColor;
  stroke: none;
}

.menu-toggle {
  display: none;
}

@media (max-width: 1100px) {
  .site-header__inner {
    gap: 24px;
  }

  .site-nav {
    gap: 20px;
    font-size: 12px;
  }

  .header-socials {
    gap: 5px;
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 74px;
  }

  .site-header__inner {
    width: min(calc(100% - 36px), var(--content-width));
  }

  .site-header__logo img {
    width: 82px;
    height: auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    padding: 12px 0;
    color: #191713;
    background: transparent;
    font: 600 11px/1 "Montserrat", Arial, sans-serif;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
  }

  .menu-toggle__icon {
    display: grid;
    gap: 4px;
    width: 22px;
  }

  .menu-toggle__icon i {
    display: block;
    width: 100%;
    height: 2px;
    background: #191713;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    height: calc(100dvh - var(--header-height));
    max-height: none;
    overflow-y: auto;
    padding: 28px max(24px, calc((100vw - 560px) / 2)) 30px;
    background:
      linear-gradient(145deg, rgba(197, 163, 125, 0.035), transparent 36%),
      #fff;
    box-shadow: 0 20px 45px rgba(32, 29, 25, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 260ms ease, visibility 220ms;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a,
  .site-nav__dropdown-toggle {
    width: 100%;
    min-height: 56px;
    padding: 18px 4px;
    border-bottom: 1px solid rgba(45, 42, 38, 0.095);
    color: #2d2a26;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
  }

  .site-nav > a:not(.site-nav__project)::after,
  .site-nav__dropdown-toggle::after {
    display: none;
  }

  .site-nav > a.site-nav__project {
    position: relative;
    margin: 0;
    padding: 18px 4px 18px 22px;
    border: 0;
    border-bottom: 1px solid rgba(45, 42, 38, 0.095);
    border-radius: 0;
    background: transparent;
    font-size: 15px;
  }

  .site-nav > a.site-nav__project::before {
    content: "";
    position: absolute;
    left: 4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c5a37d;
  }

  .site-nav__dropdown-toggle {
    justify-content: space-between;
  }

  .site-nav__dropdown-menu {
    position: static;
    display: none;
    width: auto;
    padding: 8px 0 10px 20px;
    visibility: visible;
    opacity: 1;
    transform: none;
    background: rgba(197, 163, 125, 0.045);
    box-shadow: none;
  }

  .site-nav__dropdown-menu a {
    padding: 12px 10px;
    color: #6c655f;
    font-size: 13px;
    font-weight: 500;
  }

  .site-nav__dropdown.is-open .site-nav__dropdown-menu {
    display: block;
  }

  .site-nav__dropdown.is-open .site-nav__dropdown-toggle span {
    transform: translateY(2px) rotate(225deg);
  }

  .site-nav__mobile-socials {
    margin-top: 18px;
    display: block;
    padding-top: 0;
  }

  .site-nav__mobile-socials > span {
    display: block;
    margin-bottom: 14px;
    color: #a9825c;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
  }

  .site-nav__mobile-socials > div {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
  }

  .site-nav__mobile-socials a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #4b4640;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
  }

  .site-nav__mobile-socials a i {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 163, 125, 0.32);
    border-radius: 50%;
    color: #a9825c;
    font: 600 15px/1 Arial, sans-serif;
    font-style: normal;
  }

  .header-socials {
    display: none;
  }
}

/* 03 — hero.css */
.hero {
  position: relative;
  height: clamp(620px, 41.770833vw, 802px);
  min-height: 620px;
  max-height: 802px;
  scroll-margin-top: var(--header-height);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #121311;
}

.hero__background {
  position: absolute;
  inset: 0;
  background: #121311 url("../images/park-residence-hero.jpg") center top / 100% auto no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.14) 52%, rgba(10, 10, 10, 0.03) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 80px), 1300px);
  margin: 0 auto;
  padding: 106px 0 104px;
}

.hero__panel {
  width: min(100%, 720px);
  padding: 38px 40px;
  border: 1px solid rgba(197, 163, 125, 0.16);
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(4px);
}

.hero__eyebrow {
  margin: 0 0 16px;
  color: var(--color-gold);
  font: 400 11px/1.3 Arial, sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  color: #fff;
  font: 300 clamp(36px, 4.2vw, 58px)/1.18 "Playfair Display", Georgia, serif;
  letter-spacing: -0.2px;
}

.hero__title span {
  white-space: nowrap;
}

.hero__divider {
  width: 62px;
  height: 1px;
  margin: 24px 0 22px;
  background: var(--color-gold);
}

.hero__availability {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.74);
  font: 400 10px/1.4 Arial, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__availability i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7ec87e;
  box-shadow: 0 0 7px rgba(126, 200, 126, 0.62);
}

.hero__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 13px 28px;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  background: rgba(0, 0, 0, 0.08);
  font: 400 11px/1.3 Arial, sans-serif;
  letter-spacing: 1.6px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 280ms ease, background 280ms ease, box-shadow 280ms ease;
}

.hero__button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -120%;
  width: 60%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: skewX(-25deg);
  transition: left 720ms ease;
}

.hero__button span {
  position: relative;
  z-index: 1;
}

.hero__button:hover,
.hero__button:focus-visible {
  color: #15120f;
  background: var(--color-gold);
  box-shadow: 0 12px 30px rgba(197, 163, 125, 0.2);
}

.hero__button:hover::before,
.hero__button:focus-visible::before {
  left: 140%;
}

.news-strip {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 5;
  overflow: hidden;
  padding: 20px 0;
  border-block: 1px solid rgba(197, 163, 125, 0.42);
  background:
    radial-gradient(circle at 12% 50%, rgba(197, 163, 125, 0.22), transparent 28%),
    radial-gradient(circle at 82% 50%, rgba(117, 146, 95, 0.14), transparent 30%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.93), rgba(252, 250, 247, 0.87), rgba(255, 253, 249, 0.94));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

.news-strip--top {
  top: 0;
}

.news-strip--bottom {
  bottom: 0;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
}

.news-strip__track {
  display: inline-flex;
  width: max-content;
  animation: newsScroll 22s linear infinite;
}

.news-strip__group {
  min-width: 100vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 28px;
}

.news-strip__item,
.news-strip__group > b {
  color: #2c251d;
  font: 700 10px/1 Arial, sans-serif;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.news-strip__item b,
.news-strip__group > b {
  color: var(--color-gold);
  font-size: 8px;
}

.news-strip__group > i {
  width: 1px;
  height: 18px;
  background: linear-gradient(transparent, rgba(197, 163, 125, 0.85), rgba(117, 146, 95, 0.45), transparent);
}

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

@media (max-width: 767px) {
  .hero {
    height: calc(100svh - var(--header-height));
    min-height: 620px;
  }

  .hero__background {
    background-position: 62% center;
    background-size: cover;
  }

  .hero__overlay {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.04), rgba(10, 10, 10, 0.2) 42%, rgba(10, 10, 10, 0.5));
  }

  .hero__content {
    width: calc(100% - 36px);
    padding: 90px 0 92px;
  }

  .hero__panel {
    padding: 25px 22px;
  }

  .hero__title {
    font-size: clamp(29px, 9vw, 42px);
  }

  .hero__title span {
    white-space: normal;
  }

  .news-strip {
    padding: 16px 0;
  }

  .news-strip__group {
    gap: 12px;
    padding: 0 16px;
  }

  .news-strip__item,
  .news-strip__group > b {
    font-size: 8.5px;
    letter-spacing: 1.7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-strip__track {
    animation: none;
  }
}

/* 04 — mini-banner.css */
.mini-banner {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-bottom: 1px solid rgba(197, 163, 125, 0.3);
  background:
    radial-gradient(circle at 10% 0%, rgba(197, 163, 125, 0.14), transparent 34%),
    radial-gradient(circle at 88% 100%, rgba(197, 163, 125, 0.08), transparent 30%),
    linear-gradient(120deg, #fff, #fcfaf7 54%, #fffdf9);
  font-family: "Montserrat", Arial, sans-serif;
  isolation: isolate;
}

.mini-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: repeating-linear-gradient(90deg, rgba(197, 163, 125, 0.035) 0 1px, transparent 1px 150px);
}

.mini-banner__inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 1180px);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 1px minmax(250px, 0.7fr);
  align-items: center;
  gap: clamp(38px, 6vw, 80px);
}

.mini-banner__main p,
.mini-banner__aside span {
  margin: 0 0 10px;
  color: #b48b63;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
}

.mini-banner__main h1 {
  margin: 0;
  color: #2d2a26;
  font: 600 clamp(38px, 4vw, 58px)/1 "Playfair Display", Georgia, serif;
}

.mini-banner__main i {
  display: block;
  width: 58px;
  height: 1px;
  margin: 17px 0 14px;
  background: #c5a37d;
}

.mini-banner__main > span {
  display: block;
  max-width: 660px;
  color: #746d66;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
}

.mini-banner__divider {
  width: 1px;
  height: 92px;
  background: linear-gradient(transparent, rgba(197, 163, 125, 0.42), transparent);
}

.mini-banner__aside strong {
  display: block;
  color: #2d2a26;
  font: 600 28px/1.15 "Playfair Display", Georgia, serif;
}

.mini-banner__orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(18px);
  animation: miniOrb 12s ease-in-out infinite alternate;
}

.mini-banner__orb--one {
  top: -100px;
  left: 8%;
  width: 220px;
  height: 220px;
  background: rgba(197, 163, 125, 0.12);
}

.mini-banner__orb--two {
  right: 12%;
  bottom: -90px;
  width: 190px;
  height: 190px;
  background: rgba(174, 148, 119, 0.1);
  animation-delay: -5s;
}

.mini-banner__line {
  position: absolute;
  z-index: -1;
  width: 430px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 163, 125, 0.24), transparent);
}

.mini-banner__line--one { top: 46px; right: -70px; transform: rotate(-18deg); }
.mini-banner__line--two { bottom: 30px; left: -120px; transform: rotate(16deg); }

@keyframes miniOrb {
  to { transform: translate3d(28px, 15px, 0) scale(1.08); }
}

@media (max-width: 760px) {
  .mini-banner {
    height: auto;
    min-height: 230px;
  }

  .mini-banner__inner {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 42px 0;
  }

  .mini-banner__divider { display: none; }

  .mini-banner__aside {
    padding-top: 17px;
    border-top: 1px solid rgba(197, 163, 125, 0.22);
  }

  .mini-banner__aside strong { font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .mini-banner__orb { animation: none; }
}

/* 05 — sections.css */
/*
 * Spoločné pravidlá pre obsahové sekcie domovskej stránky.
 * Konkrétne bloky budeme dopĺňať postupne podľa dodaných Elementor podkladov.
 */
.section {
  position: relative;
  padding: 96px 0;
}

.section__inner {
  width: min(calc(100% - 48px), var(--content-width));
  margin-inline: auto;
}

.home-content-flow {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 8%, rgba(197, 163, 125, 0.09), transparent 22%),
    radial-gradient(circle at 88% 33%, rgba(126, 163, 95, 0.055), transparent 24%),
    radial-gradient(circle at 12% 72%, rgba(197, 163, 125, 0.075), transparent 25%),
    linear-gradient(118deg, transparent 0 22%, rgba(222, 211, 198, 0.15) 22.08% 22.2%, transparent 22.32%),
    linear-gradient(154deg, transparent 0 72%, rgba(222, 211, 198, 0.13) 72.08% 72.2%, transparent 72.32%),
    linear-gradient(180deg, #fff 0%, #fdfbf8 48%, #fff 100%);
}

.home-content-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: repeating-linear-gradient(90deg, rgba(197, 163, 125, 0.025) 0 1px, transparent 1px 180px);
}

@media (max-width: 767px) {
  .section {
    padding: 68px 0;
  }

  .section__inner {
    width: calc(100% - 36px);
  }
}

/* 06 — home-intro.css */
.home-intro {
  position: relative;
  overflow: hidden;
  padding-top: 76px;
  background: transparent;
  font-family: "Montserrat", Arial, sans-serif;
}

.home-intro__watermark {
  position: absolute;
  left: 50%;
  bottom: 16px;
  color: rgba(45, 42, 38, 0.035);
  font: 600 clamp(72px, 10vw, 168px)/1 "Playfair Display", Georgia, serif;
  white-space: nowrap;
  pointer-events: none;
  transform: translateX(-50%);
}

.home-intro__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 44px), 1180px);
  min-height: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(390px, 0.95fr) minmax(420px, 1.05fr);
  align-items: start;
  gap: clamp(44px, 6vw, 92px);
}

.home-intro__media {
  position: relative;
  min-height: 520px;
}

.home-intro__photo {
  position: absolute;
  inset: 0 24px 0 0;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(0deg, rgba(45, 42, 38, 0.28), transparent 48%),
    url("../images/park-residence-intro.jpg") center / cover no-repeat;
  box-shadow: 0 30px 74px rgba(45, 42, 38, 0.16);
  transition: transform 520ms ease, box-shadow 520ms ease;
}

.home-intro__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.26), transparent 32%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 88px);
  opacity: 0.34;
}

.home-intro__caption {
  position: absolute;
  left: 30px;
  bottom: 28px;
  z-index: 2;
  max-width: 300px;
  color: #fffaf3;
}

.home-intro__caption span,
.home-intro__kicker {
  display: block;
  margin: 0 0 10px;
  color: #c49b70;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.home-intro__caption span {
  color: rgba(255, 250, 243, 0.82);
}

.home-intro__caption strong {
  display: block;
  font: 600 31px/1.12 "Playfair Display", Georgia, serif;
}

.home-intro__frame {
  position: absolute;
  border: 1px solid rgba(222, 211, 198, 0.76);
  border-radius: 18px;
  pointer-events: none;
  transition: transform 520ms ease, opacity 520ms ease;
}

.home-intro__frame--one {
  inset: 0 0 0 28px;
}

.home-intro__frame--two {
  inset: 58px -22px 34px 64px;
  opacity: 0.52;
}

.home-intro__media:hover .home-intro__photo {
  transform: translateY(-6px);
  box-shadow: 0 38px 86px rgba(45, 42, 38, 0.2);
}

.home-intro__media:hover .home-intro__frame--one {
  transform: translate(-8px, 8px);
}

.home-intro__media:hover .home-intro__frame--two {
  opacity: 0.76;
  transform: translate(8px, -8px);
}

.home-intro__content {
  position: relative;
  padding: 46px 0 36px;
}

.home-intro__content h2 {
  max-width: 640px;
  margin: 0;
  color: #2d2a26;
  font: 600 clamp(42px, 4.15vw, 64px)/1.06 "Playfair Display", Georgia, serif;
  text-wrap: balance;
}

.home-intro__content h2 span {
  white-space: nowrap;
}

.home-intro__lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #6c655f;
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
}

.home-intro__lead strong {
  color: #c49b70;
  font-weight: 700;
}

.home-intro__divider {
  width: 84px;
  height: 1px;
  margin: 30px 0;
  background: rgba(196, 155, 112, 0.55);
}

.home-intro__copy {
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.home-intro__copy p {
  margin: 0;
  color: #7a7470;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
}

.home-intro__highlights {
  max-width: 700px;
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(222, 211, 198, 0.72);
  background: rgba(222, 211, 198, 0.72);
}

.home-intro__highlights article {
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.88);
}

.home-intro__highlights strong {
  display: block;
  color: #2d2a26;
  font: 600 28px/1 "Playfair Display", Georgia, serif;
}

.home-intro__highlights span {
  display: block;
  margin-top: 8px;
  color: #918a84;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .home-intro {
    padding-top: 58px;
  }

  .home-intro__inner {
    width: min(calc(100% - 36px), 720px);
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 50px;
    padding-bottom: 72px;
  }

  .home-intro__media {
    min-height: 460px;
  }

  .home-intro__content {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .home-intro {
    padding-top: 44px;
  }

  .home-intro__inner {
    width: calc(100% - 36px);
    gap: 40px;
    padding-bottom: 60px;
  }

  .home-intro__media {
    min-height: 340px;
  }

  .home-intro__photo {
    inset: 0;
  }

  .home-intro__frame--one {
    inset: 0 10px;
  }

  .home-intro__frame--two,
  .home-intro__watermark {
    display: none;
  }

  .home-intro__caption {
    left: 22px;
    bottom: 22px;
  }

  .home-intro__caption strong {
    font-size: 26px;
  }

  .home-intro__content h2 {
    font-size: clamp(36px, 11vw, 44px);
  }

  .home-intro__content h2 span {
    white-space: normal;
  }

  .home-intro__copy,
  .home-intro__highlights {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-intro__photo,
  .home-intro__frame {
    transition: none;
  }
}

/* 07 — benefits.css */
.benefits {
  position: relative;
  padding: 110px 20px 100px;
  overflow: hidden;
  background: transparent;
  font-family: "Montserrat", Arial, sans-serif;
}

.benefits__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.benefits__header {
  max-width: 860px;
  margin: 0 auto 70px;
  text-align: center;
}

.benefits__kicker {
  margin: 0 0 14px;
  color: #c5a37d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.benefits__header h2 {
  margin: 0;
  color: #2a2a2a;
  font: 600 clamp(36px, 5vw, 60px)/1.12 "Playfair Display", Georgia, serif;
  text-wrap: balance;
}

.benefits__header > p:last-child {
  max-width: 720px;
  margin: 24px auto 0;
  color: #7b7772;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.benefit-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 42px 34px 38px;
  border: 1px solid rgba(197, 163, 125, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 30px rgba(45, 42, 38, 0.045), 0 2px 10px rgba(45, 42, 38, 0.025);
  text-align: center;
  backdrop-filter: blur(5px);
  transition: transform 350ms ease, border-color 350ms ease, box-shadow 350ms ease;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 163, 125, 0.13), transparent 70%);
  opacity: 0;
  transition: opacity 400ms ease;
}

.benefit-card:hover {
  border-color: rgba(197, 163, 125, 0.35);
  box-shadow: 0 24px 50px rgba(45, 42, 38, 0.08), 0 4px 15px rgba(45, 42, 38, 0.04);
  transform: translateY(-8px);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card__icon {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  margin: 0 auto 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(197, 163, 125, 0.18);
  border-radius: 22px;
  color: #c5a37d;
  background: rgba(197, 163, 125, 0.1);
  font: 400 34px/1 Georgia, serif;
}

.benefit-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: #2d2d2d;
  font: 600 26px/1.25 "Playfair Display", Georgia, serif;
}

.benefit-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #75716d;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
}

@media (max-width: 1024px) {
  .benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .benefits {
    padding: 72px 18px;
  }

  .benefits__header {
    margin-bottom: 44px;
  }

  .benefits__header h2 {
    font-size: 38px;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-card {
    min-height: 0;
    padding: 34px 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefit-card {
    transition: none;
  }
}

/* 08 — apartment-types.css */
.apartment-types {
  position: relative;
  overflow: hidden;
  padding-top: 20px;
  background: transparent;
  font-family: "Montserrat", Arial, sans-serif;
}

.apartment-types__watermark {
  position: absolute;
  top: 108px;
  left: 50%;
  color: rgba(45, 42, 38, 0.035);
  font: 600 clamp(70px, 10vw, 160px)/1 "Playfair Display", Georgia, serif;
  white-space: nowrap;
  pointer-events: none;
  transform: translateX(-50%);
}

.apartment-types__intro {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: 96px 24px 72px;
  text-align: center;
}

.apartment-types__kicker,
.apartment-type__kicker {
  display: block;
  margin: 0 0 14px;
  color: #c49b70;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.apartment-types__intro h2 {
  margin: 0;
  color: #2d2a26;
  font: 600 clamp(38px, 5vw, 64px)/1.08 "Playfair Display", Georgia, serif;
  text-wrap: balance;
}

.apartment-types__intro > p:last-child {
  max-width: 720px;
  margin: 24px auto 0;
  color: #7a7470;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
}

.apartment-type {
  position: relative;
  width: min(calc(100% - 56px), 1180px);
  min-height: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  padding: 72px 0;
  border-top: 1px solid rgba(197, 163, 125, 0.14);
}

.apartment-type--reverse {
  grid-template-columns: minmax(340px, 0.92fr) minmax(360px, 1.08fr);
}

.apartment-type--reverse .apartment-type__art {
  order: 2;
}

.apartment-type__art {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apartment-type__photo {
  position: relative;
  z-index: 2;
  width: min(560px, 82vw);
  aspect-ratio: 1.24;
  overflow: hidden;
  border-radius: 20px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 34px 80px rgba(45, 42, 38, 0.18);
  transition: transform 550ms ease, box-shadow 550ms ease;
}

.apartment-type__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(45, 42, 38, 0.24), transparent 56%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 82px);
}

.apartment-type__photo--1b { background-image: url("../images/exterier/parkresidence_1NPA_9-1.jpg"); }
.apartment-type__photo--2a { background-image: url("../images/vizualizacie/parkresidence_1NPA_2-2.jpg"); }
.apartment-type__photo--2b { background-image: url("../images/vizualizacie/parkresidence_1NPC_15-1.jpg"); }

.apartment-type__photo > span {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 2;
  padding: 10px 16px;
  border-radius: 999px;
  color: #2d2a26;
  background: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.apartment-type__frame {
  position: absolute;
  border: 1px solid rgba(197, 163, 125, 0.32);
  border-radius: 18px;
  pointer-events: none;
  transition: transform 600ms ease, opacity 600ms ease;
}

.apartment-type__frame--one {
  width: min(650px, 90vw);
  aspect-ratio: 1.32;
  transform: translate(-18px, 18px);
}

.apartment-type__frame--two {
  width: min(710px, 98vw);
  aspect-ratio: 1.36;
  opacity: 0.55;
  transform: translate(38px, -24px);
}

.apartment-type__bubble {
  position: absolute;
  right: 7%;
  bottom: 10%;
  z-index: 4;
  min-width: 142px;
  min-height: 82px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1px solid rgba(222, 211, 198, 0.86);
  border-radius: 14px;
  color: #2d2a26;
  background: rgba(250, 246, 241, 0.94);
  box-shadow: 0 16px 38px rgba(45, 42, 38, 0.12);
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: transform 360ms ease, box-shadow 360ms ease, background 360ms ease;
}

.apartment-type__bubble span {
  color: #c49b70;
  font-size: 18px;
}

.apartment-type__content {
  position: relative;
  z-index: 3;
  max-width: 520px;
}

.apartment-type__content h3 {
  margin: 0;
  color: #2d2a26;
  font: 600 clamp(38px, 4vw, 58px)/1.03 "Playfair Display", Georgia, serif;
  text-transform: uppercase;
}

.apartment-type__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 22px;
}

.apartment-type__tags span {
  min-height: 34px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(197, 163, 125, 0.22);
  color: #5b534b;
  background: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 600;
}

.apartment-type__content > p:not(.apartment-type__kicker) {
  margin: 0;
  color: #6f6f6f;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
}

.apartment-type__footer {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.apartment-type__footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2d2a26;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.apartment-type__footer a::after {
  content: "→";
  color: #c49b70;
  transition: transform 260ms ease;
}

.apartment-type__footer small {
  color: rgba(45, 42, 38, 0.5);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.apartment-type:hover .apartment-type__photo {
  box-shadow: 0 42px 92px rgba(45, 42, 38, 0.22);
  transform: translateY(-6px) scale(1.018);
}

.apartment-type:hover .apartment-type__frame--one { transform: translate(-26px, 26px); }
.apartment-type:hover .apartment-type__frame--two { opacity: 0.76; transform: translate(46px, -30px); }
.apartment-type__bubble:hover { background: #fff; box-shadow: 0 20px 46px rgba(45, 42, 38, 0.14); transform: translateY(-6px); }
.apartment-type__footer a:hover::after { transform: translateX(5px); }

@media (max-width: 980px) {
  .apartment-type,
  .apartment-type--reverse {
    width: min(calc(100% - 48px), 720px);
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 64px 0;
  }

  .apartment-type--reverse .apartment-type__art {
    order: 0;
  }

  .apartment-type__content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .apartment-type__tags,
  .apartment-type__footer {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .apartment-types__watermark {
    display: none;
  }

  .apartment-types__intro {
    padding: 70px 18px 50px;
  }

  .apartment-types__intro h2,
  .apartment-type__content h3 {
    font-size: 38px;
  }

  .apartment-type,
  .apartment-type--reverse {
    width: calc(100% - 36px);
    min-height: 0;
    padding: 52px 0;
  }

  .apartment-type__art {
    min-height: 280px;
  }

  .apartment-type__photo {
    width: min(330px, 86vw);
    border-radius: 16px;
  }

  .apartment-type__frame--one { width: min(390px, 96vw); }
  .apartment-type__frame--two { width: min(450px, 112vw); }

  .apartment-type__bubble {
    right: 2%;
    bottom: 6%;
    min-width: 112px;
    min-height: 64px;
    padding: 12px 14px;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .apartment-type__photo,
  .apartment-type__frame,
  .apartment-type__bubble {
    transition: none;
  }
}

/* 09 — locality.css */
.locality {
  position: relative;
  overflow: hidden;
  padding: 108px 22px 116px;
  background:
    radial-gradient(circle at 8% 16%, rgba(197, 163, 125, 0.07), transparent 23%),
    radial-gradient(circle at 92% 68%, rgba(197, 163, 125, 0.055), transparent 25%),
    linear-gradient(180deg, #fff, #fdfbf8 56%, #fff);
  font-family: "Montserrat", Arial, sans-serif;
}

.locality__watermark {
  position: absolute;
  top: 44px;
  left: 50%;
  color: rgba(45, 42, 38, 0.03);
  font: 600 clamp(90px, 15vw, 230px)/1 "Playfair Display", Georgia, serif;
  pointer-events: none;
  transform: translateX(-50%);
}

.locality__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.locality__intro-grid {
  display: grid;
  grid-template-columns: minmax(440px, 1.08fr) minmax(400px, 0.92fr);
  align-items: center;
  gap: clamp(46px, 7vw, 94px);
}

.locality__visual {
  position: relative;
  min-height: 520px;
}

.locality__photo {
  position: absolute;
  inset: 0 34px 28px 0;
  z-index: 2;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(0deg, rgba(45, 42, 38, 0.3), transparent 54%),
    url("../images/lokalita-borik.jpg") center / cover no-repeat;
  box-shadow: 0 32px 78px rgba(45, 42, 38, 0.16);
}

.locality__caption {
  position: absolute;
  left: 30px;
  bottom: 28px;
  z-index: 2;
  color: #fff;
}

.locality__caption span,
.locality__kicker {
  display: block;
  margin: 0 0 10px;
  color: #c49b70;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.locality__caption span { color: rgba(255, 255, 255, 0.78); }
.locality__caption strong { display: block; font: 600 32px/1.15 "Playfair Display", Georgia, serif; }

.locality__frame {
  position: absolute;
  border: 1px solid rgba(197, 163, 125, 0.28);
  border-radius: 20px;
}

.locality__frame--one { inset: 24px 0 0 34px; }
.locality__frame--two { inset: 82px -24px 52px 76px; opacity: 0.55; }

.locality__pin {
  position: absolute;
  z-index: 4;
  min-width: 116px;
  padding: 15px 17px;
  border: 1px solid rgba(222, 211, 198, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(45, 42, 38, 0.1);
  backdrop-filter: blur(10px);
}

.locality__pin span { display: block; color: #c49b70; font-size: 10px; font-weight: 700; letter-spacing: 2px; }
.locality__pin strong { color: #2d2a26; font: 600 21px/1.2 "Playfair Display", Georgia, serif; }
.locality__pin--park { top: 50px; right: 0; }
.locality__pin--centre { left: 40px; bottom: 0; }

.locality__panel,
.locality__map-panel {
  padding: 44px 40px;
  border: 1px solid rgba(222, 211, 198, 0.68);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(45, 42, 38, 0.07);
  backdrop-filter: blur(6px);
}

.locality h2,
.locality h3,
.locality h4,
.locality__map-panel > strong {
  margin: 0;
  color: #2d2a26;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
}

.locality h2 { font-size: clamp(40px, 4vw, 58px); line-height: 1.04; }
.locality h3 { font-size: clamp(36px, 3.8vw, 52px); line-height: 1.1; }
.locality h4 { font-size: 25px; line-height: 1.15; }

.locality__panel > p:not(.locality__kicker),
.locality__places-copy > p:not(.locality__kicker),
.locality__place-grid article p,
.locality__map-header > p,
.locality__map-panel > p:not(.locality__kicker) {
  margin: 18px 0 0;
  color: #756f69;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
}

.locality__panel .locality__lead { color: #58534e; font-size: 16px; }

.locality__stats {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(222, 211, 198, 0.72);
  background: rgba(222, 211, 198, 0.72);
}

.locality__stats div { padding: 17px 13px; background: rgba(255, 255, 255, 0.86); }
.locality__stats strong { display: block; color: #2d2a26; font: 600 20px/1.2 "Playfair Display", Georgia, serif; }
.locality__stats span,
.locality__metrics span { display: block; margin-top: 5px; color: #918a84; font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; }

.locality__places {
  margin-top: 90px;
  padding-top: 68px;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(470px, 1.18fr);
  gap: clamp(40px, 6vw, 78px);
  border-top: 1px solid rgba(197, 163, 125, 0.2);
}

.locality__places-copy { position: sticky; top: 30px; align-self: start; }
.locality__place-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }

.locality__place-grid article {
  min-height: 210px;
  padding: 32px 28px;
  border: 1px solid rgba(222, 211, 198, 0.72);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 38px rgba(45, 42, 38, 0.05);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.locality__place-grid article:hover { box-shadow: 0 21px 48px rgba(45, 42, 38, 0.09); transform: translateY(-6px); }
.locality__place-grid article > span { width: 42px; height: 42px; margin-bottom: 23px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(197, 163, 125, 0.3); border-radius: 12px; color: #c49b70; font-size: 11px; font-weight: 700; }

.locality__map-block { margin-top: 94px; padding-top: 70px; border-top: 1px solid rgba(197, 163, 125, 0.2); }
.locality__map-header { margin-bottom: 44px; display: grid; grid-template-columns: 0.95fr 1.05fr; align-items: end; gap: clamp(38px, 6vw, 86px); }
.locality__map-grid { display: grid; grid-template-columns: minmax(250px, 0.34fr) minmax(600px, 1fr); gap: 24px; }
.locality__map-panel { padding: 34px 28px; }
.locality__map-panel > strong { display: block; font-size: 32px; line-height: 1.1; }

.locality__metrics { margin-top: 28px; display: grid; gap: 1px; border: 1px solid rgba(222, 211, 198, 0.72); background: rgba(222, 211, 198, 0.72); }
.locality__metrics article { padding: 18px; background: rgba(255, 255, 255, 0.9); }
.locality__metrics strong { color: #2d2a26; font: 600 29px/1 "Playfair Display", Georgia, serif; }

.locality__map-frame {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(222, 211, 198, 0.78);
  border-radius: 22px;
  background: #f8f5f0;
  box-shadow: 0 30px 76px rgba(45, 42, 38, 0.11);
}

#localityMap { position: absolute; inset: 0; z-index: 1; }
.leaflet-container { filter: grayscale(18%) contrast(106%) brightness(103%) saturate(0.88); font-family: "Montserrat", Arial, sans-serif; }

.locality__legend {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 500;
  width: 230px;
  padding: 12px;
  border: 1px solid rgba(222, 211, 198, 0.82);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 42px rgba(45, 42, 38, 0.12);
  backdrop-filter: blur(12px);
}

.locality__legend button { width: 100%; padding: 6px 7px; display: flex; align-items: center; gap: 9px; border: 0; border-radius: 9px; color: #67615b; background: transparent; font: 500 11px/1.2 "Montserrat", Arial, sans-serif; text-align: left; cursor: pointer; }
.locality__legend button:hover,
.locality__legend button:focus-visible { color: #2d2a26; background: rgba(197, 163, 125, 0.09); }

.map-key,
.locality-marker { width: 25px; height: 25px; flex: 0 0 25px; display: inline-flex; align-items: center; justify-content: center; border: 2px solid #fff; border-radius: 50%; color: #fff; box-shadow: 0 7px 17px rgba(45, 42, 38, 0.14); font-size: 10px; }
.map-key--home, .locality-marker--home { background: #c49b70; }
.map-key--park, .locality-marker--park { background: #71836b; }
.map-key--shop, .locality-marker--shop { background: #82979b; }
.map-key--food, .locality-marker--food { background: #ae7d5b; }
.map-key--sport, .locality-marker--sport { background: #897b90; }
.map-key--doctor, .locality-marker--doctor { background: #9c6962; }

.locality-marker { width: 32px; height: 32px; font-size: 12px; transition: opacity 200ms ease, transform 200ms ease; }
.locality-marker.is-dimmed { opacity: 0.22; transform: scale(0.9); }
.locality-marker.is-highlighted { opacity: 1; transform: scale(1.2); }
.locality-map-popup strong { display: block; margin-bottom: 5px; color: #2d2a26; font: 600 18px/1.15 "Playfair Display", Georgia, serif; }

@media (max-width: 1050px) {
  .locality__intro-grid,
  .locality__places,
  .locality__map-header,
  .locality__map-grid { grid-template-columns: 1fr; }
  .locality__visual { min-height: 470px; }
  .locality__places-copy { position: static; }
  .locality__map-panel { display: grid; grid-template-columns: 1fr 0.55fr; gap: 24px; }
  .locality__metrics { margin-top: 0; }
}

@media (max-width: 700px) {
  .locality { padding: 72px 18px 82px; }
  .locality__watermark { display: none; }
  .locality__visual { min-height: 360px; }
  .locality__photo { inset: 0 0 36px; }
  .locality__frame--one { inset: 18px 8px 0 18px; }
  .locality__frame--two { display: none; }
  .locality__pin { min-width: 98px; padding: 12px 14px; }
  .locality__pin--park { top: 28px; }
  .locality__pin--centre { left: 18px; }
  .locality__panel,
  .locality__map-panel { padding: 29px 22px; }
  .locality__stats,
  .locality__place-grid,
  .locality__map-panel { grid-template-columns: 1fr; }
  .locality__places,
  .locality__map-block { margin-top: 64px; padding-top: 50px; }
  .locality__map-frame { min-height: 500px; }
  .locality__legend { left: 16px; right: 16px; bottom: 16px; width: auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  .locality__place-grid article,
  .locality-marker { transition: none; }
}

/* 10 — financing.css */
.financing {
  position: relative;
  overflow: hidden;
  padding: 100px 22px 112px;
  background:
    radial-gradient(circle at 8% 13%, rgba(197, 163, 125, 0.08), transparent 25%),
    radial-gradient(circle at 92% 80%, rgba(197, 163, 125, 0.055), transparent 28%),
    linear-gradient(180deg, #fff, #fdfbf8 56%, #fff);
  font-family: "Montserrat", Arial, sans-serif;
}

.financing__watermark {
  position: absolute;
  top: 34px;
  left: 50%;
  color: rgba(45, 42, 38, 0.025);
  font: 600 clamp(76px, 11vw, 175px)/1 "Playfair Display", Georgia, serif;
  white-space: nowrap;
  pointer-events: none;
  transform: translateX(-50%);
}

.financing__inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; }

.financing__header { max-width: 860px; margin: 0 auto 70px; text-align: center; }
.financing__header > p { margin: 0 0 14px; color: #c5a37d; font-size: 12px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; }
.financing__header h2 { margin: 0; color: #2a2a2a; font: 600 clamp(40px, 5vw, 66px)/1.08 "Playfair Display", Georgia, serif; text-wrap: balance; }
.financing__header > span { display: block; max-width: 760px; margin: 24px auto 0; color: #7c7772; font-size: 15px; font-weight: 300; line-height: 1.9; }

.financing__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.financing__timeline::before { content: ""; position: absolute; top: 72px; left: 7%; right: 7%; height: 1px; background: linear-gradient(90deg, transparent, rgba(197, 163, 125, 0.45), transparent); }

.financing-card {
  position: relative;
  z-index: 1;
  min-height: 390px;
  overflow: hidden;
  padding: 34px 30px 32px;
  border: 1px solid rgba(197, 163, 125, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px rgba(45, 42, 38, 0.045), 0 2px 10px rgba(45, 42, 38, 0.025);
  backdrop-filter: blur(10px);
  transition: transform 350ms ease, border-color 350ms ease, box-shadow 350ms ease;
}

.financing-card::before { content: ""; position: absolute; top: -80px; right: -80px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(197, 163, 125, 0.13), transparent 70%); opacity: 0; transition: opacity 350ms ease; }
.financing-card:hover { border-color: rgba(197, 163, 125, 0.38); box-shadow: 0 24px 50px rgba(45, 42, 38, 0.085); transform: translateY(-8px); }
.financing-card:hover::before { opacity: 1; }

.financing-card__number { position: absolute; top: 22px; right: 25px; color: rgba(197, 163, 125, 0.1); font-size: 48px; font-weight: 700; line-height: 1; }
.financing-card__icon { width: 62px; height: 62px; margin-bottom: 28px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(197, 163, 125, 0.2); border-radius: 18px; color: #c5a37d; background: rgba(197, 163, 125, 0.1); font: 500 26px/1 Georgia, serif; }
.financing-card h3 { position: relative; margin: 0 0 14px; color: #2d2d2d; font: 600 26px/1.25 "Playfair Display", Georgia, serif; }
.financing-card > strong { position: relative; display: inline-block; margin-bottom: 18px; padding: 8px 16px; border-radius: 999px; color: #a47d58; background: rgba(197, 163, 125, 0.11); font-size: 13px; font-weight: 700; letter-spacing: 0.35px; }
.financing-card p { position: relative; margin: 0; color: #756f69; font-size: 14px; font-weight: 300; line-height: 1.85; }

.financing__note {
  margin-top: 68px;
  padding: 34px 38px;
  display: grid;
  grid-template-columns: 0.55fr 1fr auto;
  align-items: center;
  gap: 30px;
  border: 1px solid rgba(197, 163, 125, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 54px rgba(45, 42, 38, 0.055);
}

.financing__note > span { color: #2d2a26; font: 600 26px/1.2 "Playfair Display", Georgia, serif; }
.financing__note p { margin: 0; color: #746e68; font-size: 13px; font-weight: 300; line-height: 1.7; }
.financing__note a { display: inline-flex; align-items: center; gap: 10px; padding: 13px 20px; border: 1px solid #c5a37d; color: #8c6748; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-decoration: none; text-transform: uppercase; white-space: nowrap; transition: color 220ms ease, background 220ms ease; }
.financing__note a:hover,
.financing__note a:focus-visible { color: #241f1a; background: #c5a37d; }
.financing__note i { font-size: 16px; font-style: normal; }

@media (max-width: 1024px) {
  .financing__timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .financing__timeline::before { display: none; }
  .financing__note { grid-template-columns: 1fr; }
  .financing__note a { width: fit-content; }
}

@media (max-width: 640px) {
  .financing { padding: 72px 18px 82px; }
  .financing__watermark { display: none; }
  .financing__header { margin-bottom: 44px; }
  .financing__header h2 { font-size: 40px; }
  .financing__timeline { grid-template-columns: 1fr; gap: 20px; }
  .financing-card { min-height: 0; padding: 30px 24px; }
  .financing__note { margin-top: 46px; padding: 29px 24px; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .financing-card,
  .financing__note a { transition: none; }
}

/* 11 — contact.css */
.contact-page {
  position: relative;
  overflow: hidden;
  padding: 100px 22px 112px;
  background:
    radial-gradient(circle at 8% 12%, rgba(197, 163, 125, 0.08), transparent 25%),
    radial-gradient(circle at 94% 57%, rgba(197, 163, 125, 0.06), transparent 27%),
    linear-gradient(180deg, #fff, #fdfbf8 48%, #fff);
  font-family: "Montserrat", Arial, sans-serif;
}

.contact-page::before,
.contact-page::after { content: ""; position: absolute; pointer-events: none; border: 1px solid rgba(197, 163, 125, 0.13); border-radius: 36px; transform: rotate(-7deg); }
.contact-page::before { width: 520px; height: 310px; top: 570px; right: -270px; }
.contact-page::after { width: 430px; height: 260px; top: 610px; right: -235px; }
.contact-page__watermark { position: absolute; top: 34px; left: 50%; color: rgba(45, 42, 38, 0.025); font: 600 clamp(76px, 11vw, 175px)/1 "Playfair Display", Georgia, serif; white-space: nowrap; pointer-events: none; transform: translateX(-50%); }
.contact-page__inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; }
.contact-page__header { max-width: 860px; margin: 0 auto 68px; text-align: center; }
.contact-page__header > p,
.contact-kicker { margin: 0 0 14px; color: #c5a37d; font-size: 11px; font-weight: 600; letter-spacing: 3.5px; text-transform: uppercase; }
.contact-page__header h2 { margin: 0; color: #2a2a2a; font: 600 clamp(40px, 5vw, 66px)/1.08 "Playfair Display", Georgia, serif; text-wrap: balance; }
.contact-page__header > span { display: block; max-width: 760px; margin: 24px auto 0; color: #7c7772; font-size: 15px; font-weight: 300; line-height: 1.9; }

.contact-page__grid { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: 28px; align-items: stretch; }
.contact-card,
.contact-form-panel { padding: 46px 42px; border: 1px solid rgba(197, 163, 125, 0.2); border-radius: 28px; background: rgba(255, 255, 255, 0.84); box-shadow: 0 18px 55px rgba(45, 42, 38, 0.06); backdrop-filter: blur(10px); }
.contact-card h3,
.contact-form-panel h3,
.contact-map h3,
.contact-team__header h3 { margin: 0; color: #2c2926; font: 600 34px/1.2 "Playfair Display", Georgia, serif; }
.contact-card__intro { margin: 23px 0 32px; color: #756f69; font-size: 14px; font-weight: 300; line-height: 1.85; }
.contact-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.contact-detail { min-height: 125px; padding: 20px; border: 1px solid rgba(197, 163, 125, 0.16); border-radius: 18px; background: rgba(249, 246, 241, 0.64); }
.contact-detail > span { display: block; margin-bottom: 10px; color: #b18a65; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.contact-detail address,
.contact-detail p { margin: 0; color: #554f49; font-size: 12px; font-style: normal; font-weight: 400; line-height: 1.75; }
.contact-detail a { display: block; color: inherit; text-decoration: none; transition: color 200ms ease; }
.contact-detail a:hover,
.contact-detail a:focus-visible { color: #a57a53; }

.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 19px 16px; margin-top: 28px; }
.contact-form__field { display: flex; flex-direction: column; gap: 8px; }
.contact-form__field--wide,
.contact-form__consent,
.contact-form__submit,
.contact-form__status { grid-column: 1 / -1; }
.contact-form__honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-form label { color: #514c47; font-size: 11px; font-weight: 600; letter-spacing: 0.35px; }
.contact-form input,
.contact-form select,
.contact-form textarea { width: 100%; min-height: 53px; padding: 13px 15px; border: 1px solid rgba(197, 163, 125, 0.26); border-radius: 12px; outline: none; color: #332f2b; background: rgba(253, 251, 248, 0.92); font: 400 14px/1.5 "Montserrat", Arial, sans-serif; transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease; }
.contact-form textarea { min-height: 125px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: #bd956f; background: #fff; box-shadow: 0 0 0 3px rgba(197, 163, 125, 0.11); }
.contact-form__consent { display: flex; align-items: flex-start; gap: 10px; color: #7a746e; font-size: 10px; font-weight: 400; line-height: 1.65; }
.contact-form__consent input { flex: 0 0 auto; width: 16px; min-height: 16px; margin-top: 1px; accent-color: #b58b63; }
.contact-form__consent a { color: #9b714e; }
.contact-form__submit { min-height: 52px; border: 1px solid #c5a37d; border-radius: 12px; color: #29231e; background: #c5a37d; font: 700 11px/1 "Montserrat", Arial, sans-serif; letter-spacing: 1.4px; text-transform: uppercase; cursor: pointer; transition: color 220ms ease, background 220ms ease, transform 220ms ease; }
.contact-form__submit span { margin-left: 8px; font-size: 17px; }
.contact-form__submit:hover,
.contact-form__submit:focus-visible { color: #fff; background: #2f2a25; transform: translateY(-2px); }
.contact-form__submit:disabled { cursor: wait; opacity: .68; transform: none; }
.contact-form input[aria-invalid="true"],
.contact-form select[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] { border-color: #bd4a46; box-shadow: 0 0 0 2px rgba(189, 74, 70, .08); }
.contact-form__status { margin: -4px 0 0; padding: 12px 15px; border: 1px solid rgba(197, 163, 125, .32); border-radius: 10px; color: #625b54; background: rgba(255, 255, 255, .7); font-size: 11px; line-height: 1.6; }
.contact-form__status[hidden] { display: none; }
.contact-form__status.is-success { color: #587449; border-color: rgba(117, 146, 95, .42); background: rgba(168, 197, 154, .14); }
.contact-form__status.is-error { color: #9f3f3b; border-color: rgba(189, 74, 70, .4); background: rgba(216, 92, 87, .1); }

.contact-map { margin-top: 32px; padding: 26px; display: grid; grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr); align-items: center; gap: 34px; border: 1px solid rgba(197, 163, 125, 0.2); border-radius: 28px; background: rgba(255, 255, 255, 0.78); box-shadow: 0 18px 55px rgba(45, 42, 38, 0.055); }
.contact-map__copy { padding: 20px 12px 20px 20px; }
.contact-map__copy > p:not(.contact-kicker) { margin: 20px 0 25px; color: #756f69; font-size: 13px; font-weight: 300; line-height: 1.8; }
.contact-map__copy > a { display: inline-flex; align-items: center; gap: 9px; color: #9a704c; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-decoration: none; text-transform: uppercase; }
.contact-map__frame { min-height: 350px; overflow: hidden; border-radius: 20px; background: #eee9e2; }
.contact-map__frame iframe { display: block; width: 100%; height: 350px; border: 0; filter: saturate(0.55) sepia(0.08); }

.contact-team { margin-top: 94px; }
.contact-team__header { max-width: 660px; margin: 0 auto 42px; text-align: center; }
.contact-team__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.contact-team-card { min-width: 0; padding: 27px 18px 25px; border: 1px solid rgba(197, 163, 125, 0.18); border-radius: 22px; background: rgba(255, 255, 255, 0.82); text-align: center; box-shadow: 0 10px 30px rgba(45, 42, 38, 0.04); transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease; }
.contact-team-card:hover { border-color: rgba(197, 163, 125, 0.42); box-shadow: 0 20px 42px rgba(45, 42, 38, 0.075); transform: translateY(-5px); }
.contact-team-card__avatar { width: 72px; height: 72px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(197, 163, 125, 0.34); border-radius: 22px; color: #a47c58; background: linear-gradient(145deg, #f8f2eb, #fff); font: 600 22px/1 "Playfair Display", Georgia, serif; transform: rotate(-4deg); }
.contact-team-card__avatar::first-line { transform: rotate(4deg); }
.contact-team-card h4 { min-height: 45px; margin: 0 0 7px; color: #332f2b; font: 600 18px/1.25 "Playfair Display", Georgia, serif; }
.contact-team-card > span { display: block; margin-bottom: 17px; color: #b08762; font-size: 9px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; }
.contact-team-card > a { display: block; overflow-wrap: anywhere; color: #6e6862; font-size: 10px; line-height: 1.7; text-decoration: none; transition: color 200ms ease; }
.contact-team-card > a:first-of-type { margin-bottom: 2px; color: #3f3a35; font-size: 12px; font-weight: 600; }
.contact-team-card > a:hover,
.contact-team-card > a:focus-visible { color: #a47c58; }

@media (max-width: 1100px) {
  .contact-page__grid { grid-template-columns: 1fr; }
  .contact-team__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .contact-page { padding: 72px 18px 82px; }
  .contact-page__watermark { display: none; }
  .contact-page__header { margin-bottom: 44px; }
  .contact-page__header h2 { font-size: 40px; }
  .contact-card,
  .contact-form-panel { padding: 32px 24px; border-radius: 22px; }
  .contact-card h3,
  .contact-form-panel h3,
  .contact-map h3,
  .contact-team__header h3 { font-size: 29px; }
  .contact-details,
  .contact-form { grid-template-columns: 1fr; }
  .contact-form__field,
  .contact-form__consent,
  .contact-form__submit,
  .contact-form__status { grid-column: 1; }
  .contact-map { grid-template-columns: 1fr; padding: 18px; gap: 12px; }
  .contact-map__copy { padding: 15px 7px 20px; }
  .contact-map__frame,
  .contact-map__frame iframe { min-height: 300px; height: 300px; }
  .contact-team { margin-top: 72px; }
  .contact-team__grid { grid-template-columns: 1fr; gap: 14px; }
  .contact-team-card h4 { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-team-card,
  .contact-form__submit { transition: none; }
}

/* 12 — apartments.css */
.apartments {
  position: relative;
  overflow: hidden;
  padding: 96px 22px 112px;
  background:
    radial-gradient(circle at 7% 9%, rgba(197, 163, 125, 0.075), transparent 25%),
    radial-gradient(circle at 94% 70%, rgba(197, 163, 125, 0.055), transparent 27%),
    linear-gradient(180deg, #fff, #fdfbf8 54%, #fff);
  font-family: "Montserrat", Arial, sans-serif;
}

.apartments__watermark {
  position: absolute;
  top: 28px;
  left: 50%;
  color: rgba(45, 42, 38, 0.025);
  font: 600 clamp(76px, 11vw, 175px)/1 "Playfair Display", Georgia, serif;
  white-space: nowrap;
  pointer-events: none;
  transform: translateX(-50%);
}

.apartments__inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; }
.apartments__header { max-width: 820px; margin: 0 auto 52px; text-align: center; }
.apartments__header > p,
.apartment-list__heading p,
.other-projects__header > p { margin: 0 0 13px; color: #c49b70; font-size: 11px; font-weight: 700; letter-spacing: 3.7px; text-transform: uppercase; }
.apartments__header h2,
.apartment-list__heading h2,
.other-projects__header h2 { margin: 0; color: #2d2a26; font: 600 clamp(40px, 5vw, 62px)/1.08 "Playfair Display", Georgia, serif; text-wrap: balance; }
.apartments__header > span { display: block; max-width: 720px; margin: 22px auto 0; color: #7a7470; font-size: 14px; font-weight: 300; line-height: 1.85; }

.floor-map { padding: 22px; border: 1px solid rgba(197, 163, 125, 0.2); border-radius: 28px; background: rgba(255, 255, 255, 0.84); box-shadow: 0 24px 64px rgba(45, 42, 38, 0.08); }
.floor-map__image { position: relative; overflow: hidden; border-radius: 20px; background: #e9e5df; isolation: isolate; }
.floor-map__image > img { display: block; width: 100%; height: auto; }

.floor-map__hotspot { position: absolute; z-index: 2; inset: 0; padding: 0; border: 0; outline: 0; background: transparent; cursor: pointer; }
.floor-map__hotspot > img { display: block; width: 100%; height: 100%; opacity: 0; pointer-events: none; transition: opacity 240ms ease, filter 240ms ease; }
.floor-map__hotspot:hover > img,
.floor-map__hotspot:focus-visible > img,
.floor-map__hotspot.is-active > img { opacity: 1; filter: drop-shadow(0 0 9px rgba(255, 255, 255, 0.32)); }

/* Presné klikateľné plochy zodpovedajú dodaným SVG vrstvám. */
.floor-map__hotspot--3 {
  clip-path: polygon(
    95.67% 15.89%, 78.53% 16.70%, 53.78% 17.99%, 35.14% 25.07%, 15.64% 25.41%, 3.47% 31.15%,
    3.47% 44.81%, 15.51% 43.44%, 34.72% 43.30%, 53.31% 41.69%, 78.52% 41.17%, 95.78% 41.20%
  );
}

.floor-map__hotspot--2 {
  clip-path: polygon(
    95.78% 41.20%, 78.52% 41.17%, 53.31% 41.69%, 34.72% 43.30%, 15.51% 43.44%, 3.47% 44.81%,
    3.45% 56.78%, 15.87% 59.10%, 34.94% 59.19%, 53.65% 62.44%, 79.20% 62.85%, 95.85% 63.41%
  );
}

.floor-map__hotspot--1 {
  clip-path: polygon(
    82.84% 63.00%, 53.65% 62.44%, 34.94% 59.19%, 15.87% 59.10%, 9.02% 57.82%,
    9.04% 66.74%, 15.88% 67.52%, 34.98% 70.11%, 53.29% 73.17%, 82.92% 77.91%
  );
}

.floor-map__info { position: absolute; z-index: 4; top: 34px; right: 30px; width: 210px; padding: 22px 22px 20px; border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 16px; color: #fff; background: rgba(116, 85, 55, 0.88); box-shadow: 0 18px 38px rgba(33, 26, 20, 0.2); backdrop-filter: blur(12px); pointer-events: none; transition: transform 220ms ease, background 220ms ease; }
.floor-map__info > span { display: block; margin-bottom: 5px; color: rgba(255, 255, 255, 0.7); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.floor-map__info > strong { display: block; margin-bottom: 17px; font: 600 23px/1.15 "Playfair Display", Georgia, serif; }
.floor-map__info p { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 8px 0 0; font-size: 11px; }
.floor-map__info i { font-style: normal; color: rgba(255, 255, 255, 0.76); }
.floor-map__info b { font-size: 14px; }
.floor-map__info.is-updated { transform: translateY(-3px); background: rgba(139, 104, 66, 0.94); }

.floor-map__controls { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; padding-top: 18px; }
.floor-map__controls button { min-height: 66px; padding: 12px 16px; border: 1px solid rgba(197, 163, 125, 0.22); border-radius: 14px; color: #49423b; background: #fff; font-family: "Montserrat", Arial, sans-serif; text-align: left; cursor: pointer; transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease; }
.floor-map__controls button:hover,
.floor-map__controls button:focus-visible,
.floor-map__controls button.is-active { border-color: rgba(197, 163, 125, 0.55); background: rgba(197, 163, 125, 0.1); transform: translateY(-2px); }
.floor-map__controls span { display: block; margin-bottom: 4px; font: 600 18px/1.1 "Playfair Display", Georgia, serif; }
.floor-map__controls small { color: #8a827a; font-size: 10px; }

.apartment-list { margin-top: 82px; scroll-margin-top: 100px; }
.apartment-list__heading { margin-bottom: 28px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.apartment-list__heading h2 { font-size: clamp(38px, 4vw, 54px); }
.apartment-list__heading > span { padding: 9px 14px; border-radius: 999px; color: #8f6947; background: rgba(197, 163, 125, 0.12); font-size: 10px; font-weight: 700; letter-spacing: 0.7px; text-transform: uppercase; white-space: nowrap; }
.apartment-toolbar { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-bottom: 18px; }
.apartment-toolbar label > span { display: block; margin: 0 0 8px 3px; color: #817970; font-size: 9px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; }
.apartment-toolbar select { width: 100%; height: 52px; padding: 0 43px 0 16px; border: 1px solid rgba(197, 163, 125, 0.28); border-radius: 12px; outline: none; color: #35302b; background: rgba(255, 255, 255, 0.92); font: 500 12px/1 "Montserrat", Arial, sans-serif; cursor: pointer; transition: border-color 200ms ease, box-shadow 200ms ease; }
.apartment-toolbar select:focus { border-color: #c5a37d; box-shadow: 0 0 0 3px rgba(197, 163, 125, 0.12); }
.apartment-table-wrap { overflow-x: auto; border: 1px solid rgba(197, 163, 125, 0.2); border-radius: 18px; background: rgba(255, 255, 255, 0.84); box-shadow: 0 18px 42px rgba(45, 42, 38, 0.06); }
.apartment-table { width: 100%; min-width: 990px; border-collapse: collapse; }
.apartment-table th { padding: 17px 14px; color: #fff; background: #b9956f; font-size: 10px; font-weight: 700; letter-spacing: 0.85px; text-align: center; text-transform: uppercase; white-space: nowrap; }
.apartment-table td { padding: 18px 14px; border-bottom: 1px solid rgba(197, 163, 125, 0.12); color: #55504b; font-size: 12px; text-align: center; vertical-align: middle; }
.apartment-table tbody tr { transition: background 200ms ease; }
.apartment-table tbody tr:hover { background: rgba(197, 163, 125, 0.055); }
.apartment-table tbody tr:last-child td { border-bottom: 0; }
.availability { display: inline-flex; min-width: 110px; justify-content: center; padding: 8px 12px; border: 1px solid; border-radius: 8px; font-size: 9px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.availability--free { border-color: rgba(197, 163, 125, 0.38); color: #8b6842; background: rgba(197, 163, 125, 0.12); }
.availability--reserved { border-color: rgba(90, 90, 90, 0.16); color: #686868; background: rgba(80, 80, 80, 0.07); }
.availability--sold { border-color: rgba(46, 64, 49, 0.2); color: #334c38; background: rgba(46, 64, 49, 0.08); }
.apartment-table td > a { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 0 14px; border: 1px solid #c5a37d; border-radius: 9px; color: #9b714c; font-size: 9px; font-weight: 700; letter-spacing: 1px; text-decoration: none; text-transform: uppercase; transition: color 200ms ease, background 200ms ease; }
.apartment-table td > a:hover,
.apartment-table td > a:focus-visible { color: #28221d; background: #c5a37d; }
.apartment-table__empty { margin: 0; padding: 34px 20px; color: #756f68; font-size: 13px; text-align: center; }

.other-projects { position: relative; overflow: hidden; padding: 96px 22px 108px; background: linear-gradient(118deg, transparent 0 24%, rgba(222, 211, 198, 0.18) 24.1% 24.25%, transparent 24.4%), linear-gradient(154deg, transparent 0 76%, rgba(222, 211, 198, 0.16) 76.1% 76.25%, transparent 76.4%), #fff; font-family: "Montserrat", Arial, sans-serif; }
.other-projects::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 18% 12%, rgba(197, 163, 125, 0.06), transparent 30%), radial-gradient(circle at 84% 86%, rgba(197, 163, 125, 0.05), transparent 34%); pointer-events: none; }
.other-projects__watermark { position: absolute; top: 42px; left: 50%; color: rgba(45, 42, 38, 0.032); font: 600 clamp(76px, 10vw, 164px)/1 "Playfair Display", Georgia, serif; transform: translateX(-50%); white-space: nowrap; pointer-events: none; }
.other-projects__header { position: relative; z-index: 1; max-width: 860px; margin: 0 auto 58px; text-align: center; }
.other-projects__header > span { display: block; max-width: 720px; margin: 22px auto 0; color: #7a7470; font-size: 14px; font-weight: 300; line-height: 1.85; }
.other-projects__grid { position: relative; z-index: 1; max-width: 1450px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.project-card { position: relative; display: block; min-width: 0; color: inherit; text-decoration: none; }
.project-card::before { content: ""; position: absolute; inset: 18px -10px 76px 18px; border: 1px solid rgba(222, 211, 198, 0.75); border-radius: 18px; pointer-events: none; transition: transform 350ms ease; }
.project-card figure { position: relative; z-index: 1; margin: 0; aspect-ratio: 1.5; overflow: hidden; border-radius: 18px; background: #f4eee7; box-shadow: 0 20px 48px rgba(45, 42, 38, 0.1); }
.project-card figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(45, 42, 38, 0.18), transparent 55%); pointer-events: none; }
.project-card img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.project-card > div { position: relative; z-index: 2; margin: -29px 16px 0; padding: 21px 18px 20px; border: 1px solid rgba(222, 211, 198, 0.8); border-radius: 16px; background: rgba(255, 255, 255, 0.94); box-shadow: 0 16px 36px rgba(45, 42, 38, 0.08); backdrop-filter: blur(10px); transition: transform 350ms ease, border-color 350ms ease; }
.project-card > div > span { display: block; margin-bottom: 8px; color: #c49b70; font-size: 8px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.project-card h3 { margin: 0; color: #2d2a26; font: 600 22px/1.15 "Playfair Display", Georgia, serif; }
.project-card strong { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; color: #403a34; font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.project-card strong::after { content: "→"; color: #c49b70; font-size: 14px; transition: transform 220ms ease; }
.project-card:hover img { transform: scale(1.055); }
.project-card:hover::before { transform: translate(-6px, 6px); }
.project-card:hover > div { border-color: rgba(196, 155, 112, 0.45); transform: translateY(-7px); }
.project-card:hover strong::after { transform: translateX(4px); }

@media (max-width: 1050px) {
  .floor-map__info { top: 22px; right: 20px; width: 190px; padding: 18px; }
  .other-projects__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 850px; gap: 30px; }
}

@media (max-width: 760px) {
  .apartments { padding: 72px 16px 82px; }
  .apartments__watermark,
  .other-projects__watermark { display: none; }
  .apartments__header { margin-bottom: 38px; }
  .floor-map { padding: 9px; border-radius: 18px; }
  .floor-map__image { border-radius: 13px; }
  .floor-map__info { top: 10px; right: 9px; width: 148px; padding: 13px; border-radius: 11px; }
  .floor-map__info > span { font-size: 7px; letter-spacing: 1.2px; }
  .floor-map__info > strong { margin-bottom: 9px; font-size: 17px; }
  .floor-map__info p { margin-top: 4px; font-size: 8px; }
  .floor-map__info b { font-size: 10px; }
  .floor-map__controls { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding-top: 10px; }
  .floor-map__controls button { min-height: 56px; padding: 10px 12px; }
  .floor-map__controls span { font-size: 16px; }
  .apartment-list { margin-top: 62px; }
  .apartment-list__heading { align-items: flex-start; flex-direction: column; gap: 14px; }
  .apartment-toolbar { grid-template-columns: 1fr; }
  .other-projects { padding: 72px 16px 82px; }
  .other-projects__header { margin-bottom: 42px; }
  .other-projects__header h2 { font-size: 38px; }
  .other-projects__grid { grid-template-columns: 1fr; gap: 25px; }
}

@media (max-width: 440px) {
  .floor-map__info { width: 126px; }
  .floor-map__info p i { max-width: 72px; }
  .floor-map__info > strong { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .floor-map__hotspot,
  .floor-map__controls button,
  .project-card *,
  .project-card::before { transition: none !important; }
}

/* 13 — floor-offer.css */
.floor-offer {
  --floor-ink: #2d2a26;
  --floor-copy: #746d67;
  --floor-gold: #c5a37d;
  position: relative;
  overflow: hidden;
  padding: 38px 22px 112px;
  color: var(--floor-ink);
  background:
    radial-gradient(circle at 9% 8%, rgba(197, 163, 125, 0.08), transparent 25%),
    linear-gradient(180deg, #fff, #fdfbf8 58%, #fff);
  font-family: "Montserrat", Arial, sans-serif;
}

.floor-offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(151deg, transparent 0 72%, rgba(197, 163, 125, 0.08) 72.1% 72.2%, transparent 72.3%);
  pointer-events: none;
}

.floor-offer__inner { position: relative; z-index: 1; width: min(1180px, 100%); margin: 0 auto; }

.floor-nav { padding: 25px; border: 1px solid rgba(197, 163, 125, 0.22); border-radius: 20px; background: rgba(255, 255, 255, 0.82); box-shadow: 0 18px 44px rgba(45, 42, 38, 0.06); backdrop-filter: blur(8px); }
.floor-nav__top { display: grid; grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr); align-items: center; gap: 20px; }
.floor-nav__title { text-align: center; }
.floor-nav__title span { display: block; color: var(--floor-gold); font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; }
.floor-nav__title strong { display: block; margin-top: 6px; font: 600 26px/1.15 "Playfair Display", Georgia, serif; }
.floor-nav__action { min-height: 50px; padding: 0 17px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid var(--floor-gold, #c5a37d); border-radius: 11px; color: #9b714c; background: transparent; font-family: "Montserrat", Arial, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.65px; text-decoration: none; text-transform: uppercase; transition: color 220ms ease, background 220ms ease, transform 220ms ease; }
.floor-nav__action:first-child { justify-self: start; }
.floor-nav__action:last-child { justify-self: end; }
.floor-nav__action i { width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid rgba(197, 163, 125, 0.38); border-radius: 8px; font-style: normal; }
.floor-nav__action:hover,
.floor-nav__action:focus-visible { color: #2d261f; background: var(--floor-gold, #c5a37d); transform: translateY(-2px); }
.floor-nav__switcher { margin-top: 21px; display: flex; justify-content: center; gap: 10px; }
.floor-nav__switch { width: 52px; height: 43px; display: grid; place-items: center; border: 1px solid rgba(197, 163, 125, 0.58); border-radius: 11px; color: #9b714c; background: #fff; font: 700 16px/1 "Montserrat", Arial, sans-serif; text-decoration: none; transition: color 220ms ease, background 220ms ease, transform 220ms ease; }
.floor-nav__switch:hover,
.floor-nav__switch:focus-visible { background: rgba(197, 163, 125, 0.12); transform: translateY(-2px); }
.floor-nav__switch.is-active { color: #fff; background: #9b7655; border-color: #9b7655; box-shadow: 0 8px 20px rgba(90, 66, 46, 0.15); }

.floor-visual { margin-top: 28px; padding: 20px; border: 1px solid rgba(197, 163, 125, 0.2); border-radius: 26px; background: #fff; box-shadow: 0 24px 62px rgba(45, 42, 38, 0.075); }
.floor-visual__media { position: relative; overflow: hidden; border-radius: 18px; background: #ece7e1; }
.floor-visual__media > img:first-child { display: block; width: 100%; height: auto; }
.floor-visual__overlay { position: absolute; inset: 0; width: 100%; height: 100%; filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.28)); pointer-events: none; }
.floor-apartment-map { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; }
.floor-apartment-zone { outline: none; cursor: pointer; }
.floor-apartment-zone polygon { stroke-width: 2px; vector-effect: non-scaling-stroke; transition: fill-opacity 220ms ease, stroke-opacity 220ms ease, filter 220ms ease; }
.floor-apartment-zone--sold polygon { fill: #ef5d58; fill-opacity: 0.68; stroke: #d84945; stroke-opacity: 0.46; }
.floor-apartment-zone--free polygon { fill: #a8c59a; fill-opacity: 0; stroke: #64894f; stroke-opacity: 0; }
.floor-apartment-zone--reserved polygon { fill: #e49a43; fill-opacity: 0.68; stroke: #c97922; stroke-opacity: 0.48; }
.floor-apartment-zone:hover polygon,
.floor-apartment-zone:focus-visible polygon { fill-opacity: 0.78; stroke-opacity: 0.92; filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.72)); }
.floor-visual__badge { position: absolute; z-index: 3; top: 28px; right: 27px; min-width: 190px; padding: 18px 20px; border: 1px solid rgba(255, 255, 255, 0.24); border-radius: 15px; color: #fff; background: rgba(112, 81, 53, 0.89); box-shadow: 0 15px 35px rgba(32, 24, 18, 0.2); backdrop-filter: blur(10px); }
.floor-visual__badge--left { right: auto; left: 27px; }
.floor-visual__badge span { display: block; color: rgba(255, 255, 255, 0.68); font-size: 8px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.floor-visual__badge strong { display: block; margin: 5px 0 13px; font: 600 24px/1.1 "Playfair Display", Georgia, serif; }
.floor-visual__badge p { margin: 5px 0 0; display: flex; justify-content: space-between; gap: 16px; color: rgba(255, 255, 255, 0.76); font-size: 10px; }
.floor-visual__badge i { font-style: normal; }
.floor-visual__badge b { color: #fff; }
.floor-visual__badge.is-sold { background: rgba(174, 61, 57, 0.92); }
.floor-visual__badge.is-free { background: rgba(100, 137, 79, 0.93); }
.floor-visual__badge.is-reserved { background: rgba(190, 112, 31, 0.94); }

.floor-apartments { margin-top: 72px; }
.floor-apartments__header { margin-bottom: 25px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.floor-apartments__header p { margin: 0 0 11px; color: var(--floor-gold); font-size: 10px; font-weight: 700; letter-spacing: 3.3px; text-transform: uppercase; }
.floor-apartments__header h2 { margin: 0; font: 600 clamp(36px, 4vw, 52px)/1.08 "Playfair Display", Georgia, serif; }
.floor-apartments__header > span { padding: 9px 13px; border-radius: 999px; color: #8f6947; background: rgba(197, 163, 125, 0.12); font-size: 9px; font-weight: 700; letter-spacing: 0.7px; text-transform: uppercase; white-space: nowrap; }
.floor-table-wrap { overflow-x: auto; border: 1px solid rgba(197, 163, 125, 0.2); border-radius: 18px; background: rgba(255, 255, 255, 0.9); box-shadow: 0 18px 42px rgba(45, 42, 38, 0.055); }
.floor-table { width: 100%; min-width: 900px; border-collapse: collapse; }
.floor-table th { padding: 16px 13px; color: #fff; background: #b9956f; font-size: 9px; font-weight: 700; letter-spacing: 0.85px; text-align: center; text-transform: uppercase; white-space: nowrap; }
.floor-table td { padding: 18px 13px; border-bottom: 1px solid rgba(197, 163, 125, 0.12); color: #55504b; font-size: 12px; text-align: center; vertical-align: middle; }
.floor-table tbody tr { transition: background 200ms ease; }
.floor-table tbody tr:hover { background: rgba(197, 163, 125, 0.055); }
.floor-table tbody tr:last-child td { border-bottom: 0; }
.floor-table td:nth-child(2) { color: #2f2924; font-weight: 700; }
.floor-table .availability { min-width: 88px; padding: 7px 10px; display: inline-flex; justify-content: center; border: 1px solid; border-radius: 8px; font-size: 8px; font-weight: 700; letter-spacing: 0.55px; text-transform: uppercase; }
.floor-table .availability--free { color: #8a6749; border-color: rgba(197, 163, 125, 0.45); background: rgba(197, 163, 125, 0.1); }
.floor-table .availability--reserved { color: #67635f; border-color: rgba(110, 106, 101, 0.26); background: rgba(110, 106, 101, 0.08); }
.floor-table .availability--sold { color: #5d685d; border-color: rgba(93, 104, 93, 0.3); background: rgba(93, 104, 93, 0.08); }
.floor-table td > a { min-height: 38px; padding: 0 14px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--floor-gold); border-radius: 9px; color: #9b714c; font-size: 9px; font-weight: 700; letter-spacing: 1px; text-decoration: none; text-transform: uppercase; transition: color 200ms ease, background 200ms ease; }
.floor-table td > a:hover,
.floor-table td > a:focus-visible { color: #28221d; background: var(--floor-gold); }

@media (max-width: 880px) {
  .floor-nav__top { grid-template-columns: 1fr 1fr; }
  .floor-nav__title { grid-column: 1 / -1; grid-row: 1; }
  .floor-nav__action:first-child,
  .floor-nav__action:last-child { width: 100%; justify-self: stretch; }
  .floor-visual__badge { top: 16px; right: 15px; min-width: 165px; padding: 14px 16px; }
  .floor-visual__badge--left { right: auto; left: 15px; }
}

@media (max-width: 620px) {
  .floor-offer { padding: 24px 14px 78px; }
  .floor-nav { padding: 18px 14px; border-radius: 16px; }
  .floor-nav__top { grid-template-columns: 1fr; }
  .floor-nav__title,
  .floor-nav__action:first-child,
  .floor-nav__action:last-child { grid-column: auto; }
  .floor-nav__title { grid-row: auto; }
  .floor-nav__action { min-height: 46px; }
  .floor-visual { padding: 8px; border-radius: 17px; }
  .floor-visual__media { border-radius: 12px; }
  .floor-visual__badge { top: 8px; right: 8px; min-width: 128px; padding: 10px 11px; border-radius: 10px; }
  .floor-visual__badge--left { right: auto; left: 8px; }
  .floor-visual__badge span { font-size: 6px; letter-spacing: 1.2px; }
  .floor-visual__badge strong { margin: 3px 0 7px; font-size: 17px; }
  .floor-visual__badge p { margin-top: 3px; font-size: 7px; }
  .floor-apartments { margin-top: 54px; }
  .floor-apartments__header { align-items: flex-start; flex-direction: column; gap: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .floor-nav__action,
  .floor-nav__switch,
  .floor-apartment-zone polygon,
  .floor-table tbody tr,
  .floor-table td > a { transition: none; }
}

/* 14 — parking.css */
.parking-page {
  --parking-gold: #c5a37d;
  --parking-orange: #e49a43;
  --parking-ink: #2d2a26;
  position: relative;
  overflow: hidden;
  padding: 40px 22px 110px;
  color: var(--parking-ink);
  background: radial-gradient(circle at 8% 10%, rgba(197,163,125,.09), transparent 27%), linear-gradient(180deg,#fff,#fdfbf8 62%,#fff);
  font-family: "Montserrat", sans-serif;
}
.parking-page::before { content:""; position:absolute; inset:0; pointer-events:none; background:linear-gradient(148deg,transparent 0 72%,rgba(197,163,125,.08) 72.1% 72.2%,transparent 72.3%); }
.parking-page__inner { position:relative; z-index:1; width:min(1180px,100%); margin:0 auto; }

.parking-intro { display:flex; justify-content:space-between; align-items:end; gap:30px; margin:0 0 30px; }
.parking-intro p { margin:0 0 10px; color:var(--parking-gold); font-size:10px; font-weight:700; letter-spacing:3px; text-transform:uppercase; }
.parking-intro h2 { margin:0; font:600 clamp(36px,4.5vw,56px)/1.08 "Playfair Display",serif; }
.parking-intro__stats { display:flex; gap:9px; }
.parking-intro__stats span { padding:9px 13px; border:1px solid rgba(197,163,125,.35); border-radius:999px; color:#876548; background:#fff; font-size:9px; font-weight:700; letter-spacing:.6px; text-transform:uppercase; white-space:nowrap; }

.parking-map { margin:0; padding:20px; border:1px solid rgba(197,163,125,.22); border-radius:26px; background:#fff; box-shadow:0 24px 62px rgba(45,42,38,.075); }
.parking-map__media { position:relative; overflow:hidden; border-radius:18px; background:#f5f3f0; }
.parking-map__media > img { display:block; width:100%; height:auto; }
.parking-map__hotspot { position:absolute; z-index:2; padding:0; border:1.5px solid transparent; border-radius:8px; color:#fff; background:transparent; cursor:pointer; transition:background .2s ease,border-color .2s ease,box-shadow .2s ease; }
.parking-map__hotspot span { position:absolute; top:50%; left:50%; display:grid; place-items:center; width:28px; height:28px; border-radius:50%; color:#fff; background:rgba(76,61,48,.82); box-shadow:0 6px 18px rgba(34,27,21,.18); font-size:10px; font-weight:700; transform:translate(-50%,-50%); opacity:0; transition:opacity .2s ease,transform .2s ease; }
.parking-map__hotspot--free { border-color:transparent; background:transparent; }
.parking-map__hotspot--free:hover,.parking-map__hotspot--free:focus-visible,.parking-map__hotspot--free.is-active { border-color:rgba(100,137,79,.82); background:rgba(168,197,154,.70); box-shadow:inset 0 0 0 2px rgba(255,255,255,.48); }
.parking-map__hotspot--reserved { border-color:rgba(201,121,34,.48); background:rgba(228,154,67,.68); }
.parking-map__hotspot--reserved:hover,.parking-map__hotspot--reserved:focus-visible,.parking-map__hotspot--reserved.is-active { border-color:rgba(201,121,34,.9); background:rgba(228,154,67,.78); box-shadow:inset 0 0 0 2px rgba(255,255,255,.45); }
.parking-map__hotspot--sold { border-color:rgba(189,74,70,.5); background:rgba(216,92,87,.68); }
.parking-map__hotspot--sold:hover,.parking-map__hotspot--sold:focus-visible,.parking-map__hotspot--sold.is-active { border-color:rgba(174,58,54,.92); background:rgba(216,92,87,.78); box-shadow:inset 0 0 0 2px rgba(255,255,255,.45); }
.parking-map__hotspot:hover span,.parking-map__hotspot:focus-visible span,.parking-map__hotspot.is-active span { opacity:1; transform:translate(-50%,-50%) scale(1.06); }
.parking-map__hotspot[hidden] { display:none; }
.parking-map figcaption { display:flex; justify-content:space-between; gap:20px; padding:17px 4px 0; color:#766f68; font-size:11px; line-height:1.6; }
.parking-map figcaption strong { color:#9a714c; font-weight:700; }

.parking-list { margin-top:70px; }
.parking-list__head { display:flex; align-items:end; justify-content:space-between; gap:24px; margin-bottom:23px; }
.parking-list__head p { margin:0 0 10px; color:var(--parking-gold); font-size:10px; font-weight:700; letter-spacing:3px; text-transform:uppercase; }
.parking-list__head h2 { margin:0; font:600 clamp(34px,4vw,50px)/1.08 "Playfair Display",serif; }
.parking-filter { position:relative; min-width:260px; }
.parking-filter label { display:block; margin-bottom:8px; color:#9a714c; font-size:9px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; }
.parking-filter select { width:100%; height:50px; padding:0 42px 0 15px; border:1px solid rgba(197,163,125,.42); border-radius:10px; color:#3e3934; background:#fff; font:500 12px "Montserrat",sans-serif; outline:none; }
.parking-filter select:focus { border-color:var(--parking-gold); box-shadow:0 0 0 3px rgba(197,163,125,.12); }

.parking-table-wrap { overflow-x:auto; border:1px solid rgba(197,163,125,.22); border-radius:18px; background:rgba(255,255,255,.92); box-shadow:0 18px 44px rgba(45,42,38,.06); }
.parking-table { width:100%; border-collapse:collapse; }
.parking-table th { padding:16px; color:#fff; background:#b9956f; font-size:9px; font-weight:700; letter-spacing:.9px; text-align:center; text-transform:uppercase; }
.parking-table td { padding:17px 16px; border-bottom:1px solid rgba(197,163,125,.13); color:#55504b; font-size:12px; text-align:center; transition:background .2s ease; }
.parking-table tr:last-child td { border-bottom:0; }
.parking-table tbody tr:hover td,.parking-table tbody tr.is-selected td { background:rgba(197,163,125,.09); }
.parking-table tbody tr[hidden] { display:none; }
.parking-table td:first-child { color:#2f2924; font:600 20px "Playfair Display",serif; }
.parking-badge { min-width:118px; padding:8px 13px; display:inline-flex; justify-content:center; border:1px solid; border-radius:8px; font-size:8px; font-weight:700; letter-spacing:.6px; text-transform:uppercase; }
.parking-badge--free { color:#587449; border-color:rgba(117,146,95,.42); background:rgba(168,197,154,.22); }
.parking-badge--reserved { color:#a65f17; border-color:rgba(201,121,34,.48); background:rgba(228,154,67,.20); }
.parking-badge--sold { color:#a33f3b; border-color:rgba(189,74,70,.45); background:rgba(216,92,87,.16); }
.parking-empty { margin:0; padding:28px; display:none; color:#716a64; text-align:center; font-size:13px; }
.parking-empty.is-visible { display:block; }

@media (max-width:760px) {
  .parking-page { padding:28px 14px 80px; }
  .parking-intro,.parking-list__head { align-items:flex-start; flex-direction:column; }
  .parking-map { padding:8px; border-radius:17px; }
  .parking-map__media { border-radius:11px; }
  .parking-map figcaption { flex-direction:column; gap:4px; padding:13px 4px 2px; }
  .parking-filter { width:100%; min-width:0; }
  .parking-map__hotspot { border-radius:4px; }
  .parking-map__hotspot span { width:22px; height:22px; font-size:8px; }
}

@media (prefers-reduced-motion:reduce) { .parking-map__hotspot,.parking-map__hotspot span,.parking-table td { transition:none; } }

/* 15 — apartment-detail.css */
.apartment-detail { --detail-ink: #2d2a26; --detail-copy: #706963; --detail-gold: #c49b70; position: relative; overflow: hidden; padding: 52px 22px 108px; color: var(--detail-ink); background: linear-gradient(180deg, #fff, #fdfbf8 55%, #fff); font-family: "Montserrat", Arial, sans-serif; }
.apartment-detail::before { content: ""; position: absolute; inset: -20% -10%; background: linear-gradient(122deg, transparent 0 31%, rgba(196, 155, 112, 0.1) 31.1% 31.22%, transparent 31.35%), linear-gradient(154deg, transparent 0 76%, rgba(196, 155, 112, 0.08) 76.1% 76.22%, transparent 76.35%); pointer-events: none; }
.apartment-detail__inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; }
.apartment-detail__back { display: inline-flex; margin-bottom: 26px; color: #9c7655; font-size: 9px; font-weight: 700; letter-spacing: 1.3px; text-decoration: none; text-transform: uppercase; transition: transform 200ms ease; }
.apartment-detail__back:hover { transform: translateX(-4px); }
.apartment-detail__layout { display: grid; grid-template-columns: minmax(520px, 1.12fr) minmax(390px, 0.88fr); align-items: start; gap: clamp(38px, 6vw, 76px); }
.apartment-visual { position: sticky; top: 24px; }
.apartment-plan { position: relative; min-height: 630px; margin: 0; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(222, 211, 198, 0.78); border-radius: 25px; background: linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)), repeating-linear-gradient(90deg, rgba(196, 155, 112, 0.1) 0 1px, transparent 1px 82px); box-shadow: 0 28px 72px rgba(45, 42, 38, 0.09); }
.apartment-plan::before { content: ""; position: absolute; inset: 22px; z-index: 2; border: 1px solid rgba(196, 155, 112, 0.2); border-radius: 17px; pointer-events: none; }
.apartment-plan__label { position: absolute; z-index: 3; top: 34px; left: 38px; color: var(--detail-gold); font-size: 9px; font-weight: 700; letter-spacing: 2.7px; text-transform: uppercase; }
.apartment-plan__link { position: absolute; inset: 0; z-index: 1; display: grid; place-items: center; padding: 58px 34px 43px; color: inherit; text-decoration: none; cursor: zoom-in; }
.apartment-plan__link img { display: block; width: 100%; height: 100%; max-height: 520px; object-fit: contain; filter: saturate(0.94) contrast(1.02); transition: transform 450ms ease; }
.apartment-plan__link:hover img { transform: scale(1.025); }
.apartment-plan__zoom { position: absolute; right: 38px; bottom: 34px; z-index: 3; padding: 10px 14px; border: 1px solid rgba(222, 211, 198, 0.9); border-radius: 999px; color: var(--detail-gold); background: rgba(255, 255, 255, 0.94); box-shadow: 0 10px 24px rgba(45, 42, 38, 0.08); font-size: 8px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.apartment-documents { display: grid; gap: 9px; margin-top: 15px; }
.apartment-documents a { min-height: 62px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; border: 1px solid rgba(196, 155, 112, 0.5); border-radius: 12px; color: var(--detail-gold); background: rgba(255, 255, 255, 0.8); text-decoration: none; transition: transform 230ms ease, border-color 230ms ease, box-shadow 230ms ease; }
.apartment-documents a:hover { border-color: var(--detail-gold); box-shadow: 0 12px 27px rgba(45, 42, 38, 0.065); transform: translateX(5px); }
.apartment-documents span { font-size: 10px; font-weight: 700; letter-spacing: 1.7px; text-transform: uppercase; }
.apartment-documents small { display: block; margin-bottom: 3px; color: #a39b94; font-size: 7px; letter-spacing: 1.2px; }
.apartment-documents b { min-width: 38px; padding: 6px; border: 1px solid rgba(196, 155, 112, 0.28); border-radius: 8px; font-size: 8px; text-align: center; }

.apartment-tabs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 32px; border-bottom: 1px solid rgba(45, 42, 38, 0.18); }
.apartment-tab { position: relative; min-height: 54px; padding: 0 7px; border: 0; color: #928a83; background: transparent; font: 700 9px/1.2 "Montserrat", Arial, sans-serif; letter-spacing: 0.65px; text-transform: uppercase; cursor: pointer; transition: color 200ms ease, background 200ms ease; }
.apartment-tab::after { content: ""; position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--detail-gold); transform: scaleX(0); transition: transform 200ms ease; }
.apartment-tab:hover,
.apartment-tab.is-active { color: var(--detail-gold); background: rgba(196, 155, 112, 0.05); }
.apartment-tab.is-active::after { transform: scaleX(1); }
.apartment-tab:focus-visible,
.apartment-panel__link:focus-visible { outline: 2px solid var(--detail-gold); outline-offset: 3px; }
.apartment-panel[hidden] { display: none; }
.apartment-panel { animation: detailPanelIn 280ms ease both; }
@keyframes detailPanelIn { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
.apartment-panel__copy { margin: 0 8px 27px; padding-bottom: 25px; border-bottom: 1px solid rgba(45, 42, 38, 0.14); color: var(--detail-copy); font-size: 13px; font-weight: 300; line-height: 1.85; }
.apartment-total { display: flex; align-items: baseline; justify-content: space-between; gap: 22px; padding: 0 8px 21px; border-bottom: 1px solid var(--detail-ink); }
.apartment-total > span,
.apartment-price > span { color: #756e68; font: 500 21px/1.2 "Playfair Display", Georgia, serif; }
.apartment-total > strong { color: var(--detail-gold); font: 600 30px/1 "Playfair Display", Georgia, serif; white-space: nowrap; }
.apartment-total small { font: 600 15px/1 "Montserrat", Arial, sans-serif; }
.apartment-values { margin: 0; padding: 0; }
.apartment-values--main { padding: 14px 8px 18px; border-bottom: 1px solid var(--detail-ink); }
.apartment-values div { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.apartment-values dt,
.apartment-values dd { margin: 0; font-size: 11px; font-weight: 600; line-height: 1.4; }
.apartment-values dt { color: #7a7470; }
.apartment-values dd { color: var(--detail-gold); text-align: right; white-space: nowrap; }
.apartment-rooms { padding: 32px 8px 22px; border-bottom: 1px solid var(--detail-ink); }
.apartment-caption { display: block; margin-bottom: 9px; color: var(--detail-gold); font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; }
.apartment-rooms h2,
.apartment-panel__header h2 { margin: 0 0 17px; color: var(--detail-ink); font: 600 28px/1.15 "Playfair Display", Georgia, serif; }
.apartment-price { padding: 27px 8px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.apartment-price strong { color: var(--detail-gold); font-size: 14px; font-weight: 700; letter-spacing: 0.7px; text-transform: uppercase; }
.apartment-price[data-status="free"] strong { color:#64894f; }
.apartment-price[data-status="reserved"] strong { color:#c87922; }
.apartment-price[data-status="sold"] strong { color:#bd4a46; }

.apartment-panel__header { padding: 0 8px 23px; border-bottom: 1px solid var(--detail-ink); }
.apartment-panel__header h2 { margin-top: 8px; margin-bottom: 10px; font-size: 30px; }
.apartment-panel__header p { margin: 0; color: var(--detail-copy); font-size: 11px; font-weight: 300; line-height: 1.75; }
.standard-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; padding: 19px 0 7px; }
.standard-grid article { min-height: 135px; padding: 17px 15px; border: 1px solid rgba(196, 155, 112, 0.22); background: #fff; transition: transform 220ms ease, border-color 220ms ease; }
.standard-grid article:hover { border-color: rgba(196, 155, 112, 0.56); transform: translateY(-3px); }
.standard-grid strong { display: block; margin-bottom: 8px; color: var(--detail-gold); font-size: 9px; letter-spacing: 0.8px; text-transform: uppercase; }
.standard-grid p { margin: 0; color: #756e68; font-size: 11px; font-weight: 300; line-height: 1.6; }
.apartment-panel__link { min-height: 51px; margin-top: 17px; padding: 0 15px; display: flex; align-items: center; justify-content: space-between; border: 1px solid rgba(196, 155, 112, 0.52); color: var(--detail-gold); font-size: 9px; font-weight: 700; letter-spacing: 1.2px; text-decoration: none; text-transform: uppercase; }
.apartment-panel__link span { font-size: 17px; }
.finance-steps { position: relative; margin: 21px 0 7px; padding: 0; list-style: none; }
.finance-steps::before { content: ""; position: absolute; top: 17px; bottom: 17px; left: 17px; width: 1px; background: rgba(196, 155, 112, 0.28); }
.finance-steps li { position: relative; display: grid; grid-template-columns: 35px 1fr; gap: 13px; padding: 0 3px 17px 0; }
.finance-steps li > span { position: relative; z-index: 1; width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid rgba(196, 155, 112, 0.45); border-radius: 50%; color: var(--detail-gold); background: #fff; font-size: 8px; font-weight: 700; }
.finance-steps strong { display: block; margin: 1px 0 3px; font-size: 11px; }
.finance-steps p { margin: 0; color: #7a7470; font-size: 11px; font-weight: 300; line-height: 1.5; }

.mortgage-calculator { padding-top: 22px; }
.calculator-field { display: block; margin-bottom: 21px; }
.calculator-field > span { display: block; margin-bottom: 8px; color: #675f58; font-size: 9px; font-weight: 600; }
.calculator-field > div { width: 100%; height: 40px; display: grid; grid-template-columns: 1fr auto; align-items: center; border: 1px solid rgba(45, 42, 38, 0.15); background: #fff; }
.calculator-field > div:focus-within { border-color: var(--detail-gold); box-shadow: 0 0 0 3px rgba(196, 155, 112, 0.1); }
.calculator-field input[type="number"] { width: 100%; height: 38px; padding: 0 11px; border: 0; outline: 0; color: var(--detail-ink); background: transparent; font: 600 11px/1 "Montserrat", Arial, sans-serif; }
.calculator-field b { min-width: 48px; padding-right: 11px; color: var(--detail-gold); font-size: 9px; text-align: right; }
.calculator-range { --range-fill: 0%; width: 100%; height: 18px; margin: 6px 0 0; appearance: none; background: transparent; cursor: pointer; }
.calculator-range::-webkit-slider-runnable-track { height: 3px; border-radius: 999px; background: linear-gradient(to right, var(--detail-gold) 0 var(--range-fill), #e8e4df var(--range-fill) 100%); }
.calculator-range::-webkit-slider-thumb { width: 17px; height: 17px; margin-top: -7px; appearance: none; border: 1px solid rgba(196, 155, 112, 0.7); border-radius: 50%; background: #fff; box-shadow: 0 3px 9px rgba(45, 42, 38, 0.13); }
.calculator-range::-moz-range-track { height: 3px; background: #e8e4df; }
.calculator-range::-moz-range-progress { height: 3px; background: var(--detail-gold); }
.calculator-range::-moz-range-thumb { width: 17px; height: 17px; border: 1px solid rgba(196, 155, 112, 0.7); border-radius: 50%; background: #fff; }
.calculator-result { min-height: 54px; margin: 0 0 21px; padding: 0 13px; display: flex; align-items: center; justify-content: space-between; border: 1px solid rgba(196, 155, 112, 0.26); background: rgba(196, 155, 112, 0.05); }
.calculator-result span { color: #675f58; font-size: 9px; font-weight: 600; }
.calculator-result strong { color: var(--detail-gold); font: 600 19px/1 "Playfair Display", Georgia, serif; }
.calculator-payment { margin-top: 28px; padding: 20px 17px; border-top: 1px solid var(--detail-ink); border-bottom: 1px solid rgba(196, 155, 112, 0.35); background: linear-gradient(135deg, rgba(196, 155, 112, 0.08), rgba(255, 255, 255, 0.65)); }
.calculator-payment > span { display: block; color: #756e68; font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.calculator-payment strong { display: block; margin: 8px 0; color: var(--detail-gold); font: 600 33px/1 "Playfair Display", Georgia, serif; }
.calculator-payment small { display: block; color: #928a83; font-size: 9px; font-weight: 300; line-height: 1.5; }

.apartment-lightbox { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; padding: 24px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 220ms ease, visibility 220ms ease; }
.apartment-lightbox:target { opacity: 1; visibility: visible; pointer-events: auto; }
.apartment-lightbox__backdrop { position: absolute; inset: 0; background: rgba(255, 255, 255, 0.98); }
.apartment-lightbox > div { position: relative; z-index: 1; width: min(1100px, 95vw); max-height: 94vh; }
.apartment-lightbox img { display: block; width: 100%; max-height: 94vh; object-fit: contain; }
.apartment-lightbox__close { position: absolute; top: 8px; right: 8px; z-index: 2; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(222, 211, 198, 0.9); border-radius: 50%; color: var(--detail-ink); background: rgba(255, 255, 255, 0.95); box-shadow: 0 8px 20px rgba(45, 42, 38, 0.1); font-size: 23px; text-decoration: none; }

@media (max-width: 1040px) { .apartment-detail__layout { grid-template-columns: 1fr; } .apartment-visual { position: relative; top: auto; } .apartment-plan { min-height: 580px; } .apartment-summary { width: 100%; max-width: 760px; margin: 0 auto; } }
@media (max-width: 680px) {
  .apartment-detail { padding: 38px 16px 78px; }
  .apartment-plan { min-height: 430px; border-radius: 18px; }
  .apartment-plan::before { inset: 13px; border-radius: 13px; }
  .apartment-plan__label { top: 25px; left: 27px; }
  .apartment-plan__link { padding: 50px 18px 52px; }
  .apartment-plan__zoom { right: 25px; bottom: 23px; }
  .apartment-tabs { grid-template-columns: repeat(4, minmax(105px, 1fr)); overflow-x: auto; }
  .apartment-tab { min-width: 105px; }
  .standard-grid { grid-template-columns: 1fr; }
  .standard-grid article { min-height: 0; }
  .apartment-total { align-items: flex-end; }
  .apartment-total > span,
  .apartment-price > span { font-size: 18px; }
  .apartment-total > strong { font-size: 24px; }
  .apartment-lightbox { padding: 10px; }
}
@media (prefers-reduced-motion: reduce) { .apartment-panel, .apartment-plan__link img, .apartment-documents a, .apartment-lightbox { animation: none; transition: none; } }

/* 16 — legal-pages.css */
.legal-page {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 108px) 24px clamp(82px, 10vw, 132px);
  background:
    radial-gradient(circle at 5% 12%, rgba(197, 163, 125, .10), transparent 25%),
    radial-gradient(circle at 94% 78%, rgba(117, 146, 95, .07), transparent 28%),
    #fff;
  color: #302d2a;
  font-family: "Montserrat", sans-serif;
}

.legal-page::before,
.legal-page::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(197, 163, 125, .22);
  border-radius: 34px;
  transform: rotate(-7deg);
}

.legal-page::before { width: 420px; height: 220px; left: -250px; top: 20%; }
.legal-page::after { width: 560px; height: 300px; right: -360px; bottom: 9%; }

.legal-page__inner { position: relative; z-index: 1; width: min(1120px, 100%); margin: 0 auto; }

.legal-page__intro { max-width: 760px; margin: 0 0 48px; }
.legal-page__eyebrow,
.legal-document__eyebrow {
  margin: 0 0 12px;
  color: #bd8d5f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.legal-page__intro h2,
.legal-document h2,
.legal-document h3 {
  margin: 0;
  color: #272421;
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.legal-page__intro h2 { font-size: clamp(34px, 4vw, 54px); line-height: 1.08; }
.legal-page__intro > p:last-child { margin: 20px 0 0; color: #746e68; font-size: 15px; line-height: 1.9; }

.legal-layout { display: grid; grid-template-columns: 248px minmax(0, 1fr); gap: 34px; align-items: start; }

.legal-toc {
  position: sticky;
  top: 108px;
  padding: 28px 24px;
  border: 1px solid rgba(197, 163, 125, .34);
  border-radius: 20px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 55px rgba(45, 36, 28, .06);
  backdrop-filter: blur(10px);
}

.legal-toc > span { display: block; margin-bottom: 18px; color: #bd8d5f; font-size: 10px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; }
.legal-toc a { display: block; padding: 10px 0; border-bottom: 1px solid rgba(197, 163, 125, .16); color: #59534e; font-size: 12px; font-weight: 600; line-height: 1.45; text-decoration: none; transition: color .2s ease, transform .2s ease; }
.legal-toc a:last-child { border-bottom: 0; }
.legal-toc a:hover, .legal-toc a:focus-visible { color: #bd8d5f; transform: translateX(4px); }

.legal-document {
  padding: clamp(30px, 5vw, 66px);
  border: 1px solid rgba(197, 163, 125, .32);
  border-radius: 28px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 80px rgba(43, 35, 28, .08);
}

.legal-document__header { margin-bottom: 38px; padding-bottom: 30px; border-bottom: 1px solid rgba(48, 45, 42, .18); }
.legal-document__header h2 { font-size: clamp(30px, 3vw, 43px); line-height: 1.12; }
.legal-document__header p:last-child { margin: 18px 0 0; color: #716b65; font-size: 14px; line-height: 1.85; }

.legal-section { scroll-margin-top: 120px; }
.legal-section + .legal-section { margin-top: 38px; padding-top: 38px; border-top: 1px solid rgba(197, 163, 125, .24); }
.legal-section h2 { margin-bottom: 18px; font-size: clamp(25px, 2.5vw, 34px); line-height: 1.2; }
.legal-section h3 { margin: 28px 0 10px; font-size: 21px; line-height: 1.3; }
.legal-section p, .legal-section li, .legal-data dd { color: #625d58; font-size: 14px; line-height: 1.9; }
.legal-section p { margin: 0 0 16px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { color: #a87548; text-underline-offset: 3px; }
.legal-list { margin: 15px 0 0; padding-left: 20px; }
.legal-list li + li { margin-top: 8px; }

.legal-note {
  margin: 24px 0;
  padding: 20px 22px;
  border-left: 3px solid #c5a37d;
  border-radius: 0 14px 14px 0;
  background: #fbf8f4;
}

.legal-data { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 0; }
.legal-data__item { min-height: 128px; padding: 24px; border: 1px solid rgba(197, 163, 125, .30); border-radius: 18px; background: linear-gradient(145deg, #fff, #fdfaf7); }
.legal-data__item--wide { grid-column: 1 / -1; }
.legal-data dt { margin-bottom: 9px; color: #bd8d5f; font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.legal-data dd { margin: 0; color: #302d2a; font-weight: 500; }
.legal-data dd strong { font-family: "Playfair Display", serif; font-size: 22px; font-weight: 600; }

.legal-contact-strip { display: flex; justify-content: space-between; gap: 24px; margin-top: 30px; padding: 26px 28px; border-radius: 18px; background: #2e2b28; color: #fff; }
.legal-contact-strip p { margin: 0; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.7; }
.legal-contact-strip strong { display: block; margin-bottom: 4px; color: #d8b48f; font-family: "Playfair Display", serif; font-size: 22px; }
.legal-contact-strip__links { display: flex; flex-direction: column; justify-content: center; align-items: flex-end; gap: 7px; }
.legal-contact-strip a { color: #fff; font-size: 13px; text-decoration: none; }
.legal-contact-strip a:hover { color: #d8b48f; }

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; display: flex; flex-wrap: wrap; gap: 0 18px; padding: 20px 22px; }
  .legal-toc > span { width: 100%; margin-bottom: 8px; }
  .legal-toc a { width: auto; border: 0; padding: 7px 0; }
}

@media (max-width: 620px) {
  .legal-page { padding-right: 16px; padding-left: 16px; }
  .legal-page__intro { margin-bottom: 32px; }
  .legal-data { grid-template-columns: 1fr; }
  .legal-data__item--wide { grid-column: auto; }
  .legal-document { border-radius: 20px; }
  .legal-contact-strip { flex-direction: column; }
  .legal-contact-strip__links { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .legal-toc a { transition: none; }
}

/* 17 — gallery-interior.css */
.interior-gallery {
  --gallery-ink: #2d2925;
  --gallery-copy: #756e68;
  --gallery-gold: #c5a37d;
  position: relative;
  overflow: hidden;
  padding: 92px 22px 118px;
  color: var(--gallery-ink);
  background:
    radial-gradient(circle at 7% 8%, rgba(197, 163, 125, 0.08), transparent 25%),
    radial-gradient(circle at 95% 60%, rgba(197, 163, 125, 0.055), transparent 28%),
    linear-gradient(180deg, #fff, #fdfbf8 54%, #fff);
  font-family: "Montserrat", Arial, sans-serif;
}

.interior-gallery::before {
  content: "Interiér";
  position: absolute;
  top: 25px;
  left: 50%;
  color: rgba(45, 41, 37, 0.025);
  font: 600 clamp(84px, 15vw, 210px)/1 "Playfair Display", Georgia, serif;
  white-space: nowrap;
  pointer-events: none;
  transform: translateX(-50%);
}

.interior-gallery__inner { position: relative; z-index: 1; width: min(1280px, 100%); margin: 0 auto; }
.interior-gallery__intro { max-width: 820px; margin: 0 auto 52px; text-align: center; }
.interior-gallery__intro > p { margin: 0 0 13px; color: var(--gallery-gold); font-size: 10px; font-weight: 700; letter-spacing: 3.7px; text-transform: uppercase; }
.interior-gallery__intro h2 { margin: 0; font: 600 clamp(40px, 5vw, 62px)/1.08 "Playfair Display", Georgia, serif; text-wrap: balance; }
.interior-gallery__intro > span { display: block; max-width: 720px; margin: 20px auto 0; color: var(--gallery-copy); font-size: 13px; font-weight: 300; line-height: 1.85; }
.interior-gallery__switcher { margin-top: 30px; display: flex; justify-content: center; gap: 11px; }
.interior-gallery__switcher a { min-width: 145px; min-height: 49px; padding: 0 18px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid rgba(197, 163, 125, 0.5); border-radius: 11px; color: #906948; background: rgba(255, 255, 255, 0.78); font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-decoration: none; text-transform: uppercase; transition: color 220ms ease, background 220ms ease, transform 220ms ease; }
.interior-gallery__switcher a:hover,
.interior-gallery__switcher a:focus-visible { color: #29231e; background: var(--gallery-gold); transform: translateY(-2px); }
.interior-gallery__switcher small { font-size: 8px; opacity: 0.7; }

.apartment-gallery { padding-top: 48px; scroll-margin-top: 82px; }
.apartment-gallery + .apartment-gallery { margin-top: 80px; padding-top: 80px; border-top: 1px solid rgba(197, 163, 125, 0.22); }
.apartment-gallery__header { margin-bottom: 28px; display: flex; align-items: flex-end; justify-content: space-between; gap: 25px; }
.apartment-gallery__header p { margin: 0 0 11px; color: var(--gallery-gold); font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; }
.apartment-gallery__header h2 { margin: 0; font: 600 clamp(37px, 4vw, 53px)/1.08 "Playfair Display", Georgia, serif; }
.apartment-gallery__meta { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.apartment-gallery__meta span { padding: 9px 13px; border: 1px solid rgba(197, 163, 125, 0.26); border-radius: 999px; color: #81766d; background: rgba(255, 255, 255, 0.75); font-size: 10px; font-weight: 700; letter-spacing: 0.55px; text-transform: uppercase; }

.interior-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: 88px; gap: 13px; }
.interior-card { position: relative; grid-column: span 4; grid-row: span 3; min-height: 0; padding: 0; overflow: hidden; border: 0; border-radius: 16px; color: #fff; background: #e8e3dd; cursor: zoom-in; box-shadow: 0 15px 34px rgba(45, 41, 37, 0.075); }
.interior-card--hero { grid-column: span 8; grid-row: span 6; }
.interior-card--tall { grid-row: span 6; }
.interior-card--wide { grid-column: span 8; }
.interior-card img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.2,.72,.2,1), filter 350ms ease; }
.interior-card::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(31, 24, 19, 0.55)); opacity: 0.42; transition: opacity 260ms ease; }
.interior-card::after { content: "+"; position: absolute; z-index: 2; top: 16px; right: 16px; width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, 0.65); border-radius: 50%; background: rgba(54, 43, 34, 0.28); backdrop-filter: blur(7px); font-size: 18px; transition: color 220ms ease, background 220ms ease, transform 220ms ease; }
.interior-card span { position: absolute; z-index: 2; right: 18px; bottom: 16px; left: 18px; display: flex; align-items: center; justify-content: space-between; gap: 15px; font-size: 8px; font-weight: 700; letter-spacing: 1.35px; text-align: left; text-transform: uppercase; }
.interior-card span i { font-style: normal; opacity: 0.7; }
.interior-card:hover img,
.interior-card:focus-visible img { filter: saturate(1.04); transform: scale(1.035); }
.interior-card:hover::before,
.interior-card:focus-visible::before { opacity: 0.72; }
.interior-card:hover::after,
.interior-card:focus-visible::after { color: #2d2925; background: #fff; transform: rotate(90deg); }
.interior-card:focus-visible { outline: 3px solid var(--gallery-gold); outline-offset: 3px; }

.interior-lightbox { position: fixed; z-index: 10020; inset: 0; padding: 28px; display: grid; place-items: center; color: #fff; background: rgba(20, 17, 14, 0.94); backdrop-filter: blur(10px); }
.interior-lightbox[hidden] { display: none; }
.interior-lightbox__stage { position: relative; width: min(1380px, 96vw); height: min(86vh, 900px); display: grid; place-items: center; }
.interior-lightbox__image { display: block; max-width: 100%; max-height: 100%; border-radius: 9px; object-fit: contain; box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35); }
.interior-lightbox__close,
.interior-lightbox__nav { position: absolute; z-index: 2; border: 1px solid rgba(255, 255, 255, 0.36); color: #fff; background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(8px); cursor: pointer; transition: color 200ms ease, background 200ms ease, transform 200ms ease; }
.interior-lightbox__close { top: -12px; right: -5px; width: 44px; height: 44px; border-radius: 50%; font-size: 24px; }
.interior-lightbox__nav { top: 50%; width: 48px; height: 70px; border-radius: 11px; font-size: 25px; transform: translateY(-50%); }
.interior-lightbox__nav--prev { left: -9px; }
.interior-lightbox__nav--next { right: -9px; }
.interior-lightbox__close:hover,
.interior-lightbox__close:focus-visible,
.interior-lightbox__nav:hover,
.interior-lightbox__nav:focus-visible { color: #2d2925; background: #fff; }
.interior-lightbox__nav:hover,
.interior-lightbox__nav:focus-visible { transform: translateY(-50%) scale(1.04); }
.interior-lightbox__caption { position: absolute; right: 70px; bottom: -17px; left: 70px; display: flex; justify-content: space-between; gap: 20px; font-size: 9px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase; }
.interior-lightbox__caption span:last-child { opacity: 0.58; }

@media (max-width: 900px) {
  .interior-grid { grid-auto-rows: 78px; }
  .interior-card { grid-column: span 6; }
  .interior-card--hero,
  .interior-card--wide { grid-column: span 12; }
  .apartment-gallery__header { align-items: flex-start; flex-direction: column; }
  .apartment-gallery__meta { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .interior-gallery { padding: 68px 14px 80px; }
  .interior-gallery__switcher { flex-direction: column; }
  .interior-gallery__switcher a { width: 100%; }
  .apartment-gallery { padding-top: 30px; }
  .apartment-gallery + .apartment-gallery { margin-top: 58px; padding-top: 58px; }
  .interior-grid { display: grid; grid-template-columns: 1fr; grid-auto-rows: auto; gap: 10px; }
  .interior-card,
  .interior-card--hero,
  .interior-card--tall,
  .interior-card--wide { grid-column: auto; grid-row: auto; aspect-ratio: 4 / 3; border-radius: 12px; }
  .interior-card--hero { aspect-ratio: 16 / 10; }
  .interior-lightbox { padding: 13px; }
  .interior-lightbox__stage { width: 100%; height: 80vh; }
  .interior-lightbox__close { top: -4px; right: 0; }
  .interior-lightbox__nav { top: auto; bottom: -58px; width: 58px; height: 43px; transform: none; }
  .interior-lightbox__nav--prev { left: 0; }
  .interior-lightbox__nav--next { right: 0; }
  .interior-lightbox__nav:hover,
  .interior-lightbox__nav:focus-visible { transform: scale(1.04); }
  .interior-lightbox__caption { right: 65px; bottom: -48px; left: 65px; align-items: center; flex-direction: column; gap: 4px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .interior-gallery__switcher a,
  .interior-card img,
  .interior-card::before,
  .interior-card::after,
  .interior-lightbox__close,
  .interior-lightbox__nav { transition: none; }
}

/* 18 — gallery-exterior.css */
.exterior-gallery {
  --gallery-ink: #2d2925;
  --gallery-copy: #756e68;
  --gallery-gold: #c5a37d;
  position: relative;
  overflow: hidden;
  padding: 92px 22px 118px;
  color: var(--gallery-ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(117, 146, 95, 0.065), transparent 25%),
    radial-gradient(circle at 94% 58%, rgba(197, 163, 125, 0.07), transparent 27%),
    linear-gradient(180deg, #fff, #fdfbf8 54%, #fff);
  font-family: "Montserrat", Arial, sans-serif;
}

.exterior-gallery::before {
  content: "Exteriér";
  position: absolute;
  top: 25px;
  left: 50%;
  color: rgba(45, 41, 37, 0.025);
  font: 600 clamp(84px, 15vw, 210px)/1 "Playfair Display", Georgia, serif;
  white-space: nowrap;
  pointer-events: none;
  transform: translateX(-50%);
}

.exterior-gallery__inner {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.exterior-gallery__intro {
  max-width: 840px;
  margin: 0 auto 52px;
  text-align: center;
}

.exterior-gallery__intro > p {
  margin: 0 0 13px;
  color: var(--gallery-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.7px;
  text-transform: uppercase;
}

.exterior-gallery__intro h2 {
  margin: 0;
  font: 600 clamp(40px, 5vw, 62px)/1.08 "Playfair Display", Georgia, serif;
  text-wrap: balance;
}

.exterior-gallery__intro > span {
  display: block;
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--gallery-copy);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
}

.exterior-gallery__switcher {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 11px;
}

.exterior-gallery__switcher a {
  min-width: 155px;
  min-height: 49px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(197, 163, 125, 0.5);
  border-radius: 11px;
  color: #906948;
  background: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.exterior-gallery__switcher a:hover,
.exterior-gallery__switcher a:focus-visible {
  color: #29231e;
  background: var(--gallery-gold);
  transform: translateY(-2px);
}

.exterior-gallery__switcher small {
  font-size: 8px;
  opacity: 0.7;
}

.exterior-gallery .apartment-gallery__header p {
  color: var(--gallery-gold);
}

.exterior-gallery .interior-card span {
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.24);
}

@media (max-width: 700px) {
  .exterior-gallery {
    padding: 68px 14px 80px;
  }

  .exterior-gallery__switcher {
    flex-direction: column;
  }

  .exterior-gallery__switcher a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .exterior-gallery__switcher a {
    transition: none;
  }
}

/* 19 — gallery-construction.css */
.construction-gallery {
  --construction-ink: #2d2925;
  --construction-copy: #766f69;
  --construction-gold: #c5a37d;
  position: relative;
  overflow: hidden;
  padding: 80px 22px 125px;
  color: var(--construction-ink);
  background:
    radial-gradient(circle at 8% 14%, rgba(197, 163, 125, 0.08), transparent 24%),
    radial-gradient(circle at 93% 72%, rgba(117, 146, 95, 0.055), transparent 26%),
    linear-gradient(180deg, #fff, #fdfbf8 52%, #fff);
  font-family: "Montserrat", Arial, sans-serif;
}

.construction-gallery::before {
  content: "2026";
  position: absolute;
  top: 34px;
  left: 50%;
  color: rgba(45, 41, 37, 0.025);
  font: 600 clamp(110px, 19vw, 270px)/1 "Playfair Display", Georgia, serif;
  pointer-events: none;
  transform: translateX(-50%);
}

.construction-gallery__inner {
  position: relative;
  z-index: 1;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.construction-gallery__intro {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.construction-gallery__eyebrow {
  margin: 0 0 12px;
  color: var(--construction-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.6px;
  text-transform: uppercase;
}

.construction-gallery__intro h2 {
  margin: 0;
  font: 600 clamp(39px, 5vw, 61px)/1.08 "Playfair Display", Georgia, serif;
  text-wrap: balance;
}

.construction-gallery__intro > span {
  display: block;
  max-width: 680px;
  margin: 19px auto 0;
  color: var(--construction-copy);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
}

.construction-gallery__jump {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.construction-gallery__jump a {
  min-width: 116px;
  padding: 12px 18px;
  border: 1px solid rgba(197, 163, 125, 0.48);
  border-radius: 10px;
  color: #8e6848;
  background: rgba(255, 255, 255, 0.8);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.construction-gallery__jump a:hover,
.construction-gallery__jump a:focus-visible {
  color: #2d2925;
  background: var(--construction-gold);
  transform: translateY(-2px);
}

.construction-timeline {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  gap: 92px;
}

.construction-timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(197, 163, 125, 0.7) 8%, rgba(197, 163, 125, 0.35) 92%, transparent);
  transform: translateX(-50%);
}

.timeline-entry {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr);
  align-items: start;
  scroll-margin-top: 110px;
}

.timeline-entry__date {
  grid-column: 2;
  padding-top: 24px;
  color: #766c63;
  text-align: center;
}

.timeline-entry__date span {
  display: block;
  margin-bottom: 5px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.timeline-entry__date strong {
  display: block;
  color: var(--construction-gold);
  font: 600 25px/1 "Playfair Display", Georgia, serif;
}

.timeline-entry__date::after {
  content: "";
  width: 13px;
  height: 13px;
  margin: 19px auto 0;
  display: block;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--construction-gold);
  box-shadow: 0 0 0 1px rgba(197, 163, 125, 0.55), 0 7px 18px rgba(80, 59, 41, 0.17);
}

.timeline-entry__card {
  position: relative;
  grid-column: 3;
  grid-row: 1;
  padding: 27px;
  border: 1px solid rgba(197, 163, 125, 0.28);
  border-radius: 3px 18px 18px 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 62px rgba(60, 48, 38, 0.09);
}

.timeline-entry:nth-child(even) .timeline-entry__card {
  grid-column: 1;
  border-radius: 18px 3px 18px 18px;
}

.timeline-entry__card::before {
  content: "";
  position: absolute;
  top: 31px;
  left: -11px;
  width: 20px;
  height: 20px;
  border-bottom: 1px solid rgba(197, 163, 125, 0.28);
  border-left: 1px solid rgba(197, 163, 125, 0.28);
  background: #fff;
  transform: rotate(45deg);
}

.timeline-entry:nth-child(even) .timeline-entry__card::before {
  right: -11px;
  left: auto;
  border: 0;
  border-top: 1px solid rgba(197, 163, 125, 0.28);
  border-right: 1px solid rgba(197, 163, 125, 0.28);
}

.timeline-entry__kicker {
  margin: 0 0 10px;
  color: var(--construction-gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.timeline-entry__card h3 {
  margin: 0;
  font: 600 clamp(29px, 3vw, 40px)/1.12 "Playfair Display", Georgia, serif;
}

.timeline-entry__meta {
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.timeline-entry__meta span {
  padding: 7px 10px;
  border: 1px solid rgba(197, 163, 125, 0.35);
  color: #7a6f66;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.timeline-entry__description {
  margin: 16px 0 21px;
  color: var(--construction-copy);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
}

.construction-mosaic {
  --construction-mosaic-gap: 9px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 106px;
  gap: var(--construction-mosaic-gap);
}

.construction-mosaic--with-video {
  display: block;
}

.construction-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 106px;
  gap: var(--construction-mosaic-gap);
}

.construction-photo {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 9px;
  background: #e9e3dc;
  cursor: zoom-in;
}

.construction-photo--hero {
  grid-row: span 2;
}

.construction-photo--wide {
  grid-column: span 2;
}

.construction-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(.2, .72, .2, 1), filter 300ms ease;
}

.construction-photo::after {
  content: "+";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #fff;
  background: rgba(36, 28, 22, 0.3);
  backdrop-filter: blur(6px);
  font-size: 16px;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.construction-photo:hover img,
.construction-photo:focus-visible img {
  filter: saturate(1.06);
  transform: scale(1.045);
}

.construction-photo:hover::after,
.construction-photo:focus-visible::after {
  color: #2d2925;
  background: #fff;
  transform: rotate(90deg);
}

.construction-photo:focus-visible {
  outline: 3px solid var(--construction-gold);
  outline-offset: 3px;
}

.construction-video {
  position: relative;
  width: 100%;
  margin-bottom: var(--construction-mosaic-gap);
  overflow: hidden;
  border-radius: 9px;
  background: #2b2926;
  aspect-ratio: 16 / 9;
}

.construction-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.construction-lightbox {
  position: fixed;
  z-index: 10020;
  inset: 0;
  padding: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(20, 17, 14, 0.94);
  backdrop-filter: blur(10px);
}

.construction-lightbox[hidden] { display: none; }
.construction-lightbox__stage { position: relative; width: min(1380px, 96vw); height: min(86vh, 900px); display: grid; place-items: center; }
.construction-lightbox__image { display: block; max-width: 100%; max-height: 100%; border-radius: 9px; object-fit: contain; box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35); }
.construction-lightbox__close,
.construction-lightbox__nav { position: absolute; z-index: 2; border: 1px solid rgba(255, 255, 255, 0.36); color: #fff; background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(8px); cursor: pointer; transition: color 200ms ease, background 200ms ease, transform 200ms ease; }
.construction-lightbox__close { top: -12px; right: -5px; width: 44px; height: 44px; border-radius: 50%; font-size: 24px; }
.construction-lightbox__nav { top: 50%; width: 48px; height: 70px; border-radius: 11px; font-size: 25px; transform: translateY(-50%); }
.construction-lightbox__nav--prev { left: -9px; }
.construction-lightbox__nav--next { right: -9px; }
.construction-lightbox__close:hover,
.construction-lightbox__close:focus-visible,
.construction-lightbox__nav:hover,
.construction-lightbox__nav:focus-visible { color: #2d2925; background: #fff; }
.construction-lightbox__nav:hover,
.construction-lightbox__nav:focus-visible { transform: translateY(-50%) scale(1.04); }
.construction-lightbox__caption { position: absolute; right: 70px; bottom: -17px; left: 70px; display: flex; justify-content: space-between; gap: 20px; font-size: 9px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase; }
.construction-lightbox__caption span:last-child { opacity: 0.58; }

@media (max-width: 900px) {
  .construction-timeline { gap: 60px; }
  .construction-timeline::before { left: 23px; }
  .timeline-entry { grid-template-columns: 47px minmax(0, 1fr); }
  .timeline-entry__date,
  .timeline-entry:nth-child(even) .timeline-entry__date { grid-column: 1; grid-row: 1; }
  .timeline-entry__date span { font-size: 8px; }
  .timeline-entry__date strong { font-size: 18px; }
  .timeline-entry__card,
  .timeline-entry:nth-child(even) .timeline-entry__card { grid-column: 2; grid-row: 1; border-radius: 3px 16px 16px 16px; }
  .timeline-entry:nth-child(even) .timeline-entry__card::before { right: auto; left: -11px; border: 0; border-bottom: 1px solid rgba(197, 163, 125, 0.28); border-left: 1px solid rgba(197, 163, 125, 0.28); }
}

@media (max-width: 620px) {
  .construction-gallery { padding: 64px 13px 82px; }
  .construction-gallery__intro { margin-bottom: 38px; }
  .construction-gallery__jump a { flex: 1; min-width: 0; }
  .construction-timeline::before { left: 10px; }
  .timeline-entry { grid-template-columns: 21px minmax(0, 1fr); }
  .timeline-entry__date { position: absolute; z-index: 2; top: -20px; left: 0; width: 90px; padding: 7px 9px; border-radius: 999px; background: #fff; text-align: left; box-shadow: 0 5px 15px rgba(60, 48, 38, 0.08); }
  .timeline-entry__date span,
  .timeline-entry__date strong { display: inline; font-family: "Montserrat", Arial, sans-serif; font-size: 9px; }
  .timeline-entry__date::after { display: none; }
  .timeline-entry__card,
  .timeline-entry:nth-child(even) .timeline-entry__card { grid-column: 2; padding: 25px 15px 15px; border-radius: 14px; }
  .timeline-entry__card::before,
  .timeline-entry:nth-child(even) .timeline-entry__card::before { display: none; }
  .construction-mosaic { --construction-mosaic-gap: 7px; }
  .construction-mosaic,
  .construction-photo-grid { grid-auto-rows: 86px; }
  .construction-lightbox { padding: 13px; }
  .construction-lightbox__stage { width: 100%; height: 80vh; }
  .construction-lightbox__close { top: -4px; right: 0; }
  .construction-lightbox__nav { top: auto; bottom: -58px; width: 58px; height: 43px; transform: none; }
  .construction-lightbox__nav--prev { left: 0; }
  .construction-lightbox__nav--next { right: 0; }
  .construction-lightbox__nav:hover,
  .construction-lightbox__nav:focus-visible { transform: scale(1.04); }
  .construction-lightbox__caption { right: 65px; bottom: -48px; left: 65px; align-items: center; flex-direction: column; gap: 4px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .construction-gallery__jump a,
  .construction-photo img,
  .construction-photo::after,
  .construction-lightbox__close,
  .construction-lightbox__nav { transition: none; }
}

/* 20 — footer.css */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 82px 0 0;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 86% 12%, rgba(197, 163, 125, 0.1), transparent 26%),
    radial-gradient(circle at 9% 92%, rgba(197, 163, 125, 0.11), transparent 28%),
    linear-gradient(135deg, #201d19 0%, #29251f 48%, #1a1815 100%);
  font-family: "Montserrat", Arial, sans-serif;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #a9825c, #d7bd9e 52%, rgba(197, 163, 125, 0));
}

.site-footer__frames {
  position: absolute;
  top: 34px;
  right: -118px;
  width: 520px;
  height: 360px;
  pointer-events: none;
}

.site-footer__frames span {
  position: absolute;
  display: block;
  border: 1px solid rgba(215, 189, 158, 0.16);
  border-radius: 28px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.025);
}

.site-footer__frames span:first-child {
  inset: 0 0 42px 28px;
}

.site-footer__frames span:nth-child(2) {
  inset: 42px 56px 0 0;
  border-color: rgba(197, 163, 125, 0.22);
}

.site-footer__frames span:last-child {
  inset: 86px 18px 36px 82px;
  border-color: rgba(215, 189, 158, 0.1);
  border-radius: 22px;
}

.site-footer__watermark {
  position: absolute;
  left: 50%;
  bottom: 52px;
  color: rgba(255, 255, 255, 0.018);
  font: 600 clamp(78px, 12vw, 190px)/1 "Playfair Display", Georgia, serif;
  white-space: nowrap;
  pointer-events: none;
  transform: translateX(-50%);
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
  gap: 70px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__brand > a {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.94);
}

.site-footer__brand img {
  width: 88px;
  height: auto;
}

.site-footer__brand p {
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.site-footer__statement {
  max-width: 650px;
  justify-self: end;
  text-align: right;
}

.site-footer__statement span,
.site-footer__label {
  display: block;
  margin: 0 0 12px;
  color: #c5a37d;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

.site-footer__statement p {
  margin: 0;
  color: #fff;
  font: 500 clamp(27px, 3vw, 42px)/1.22 "Playfair Display", Georgia, serif;
  text-wrap: balance;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.8fr;
  gap: clamp(42px, 7vw, 92px);
  padding: 62px 0 66px;
}

.site-footer__column h2 {
  margin: 0 0 24px;
  color: #fff;
  font: 500 25px/1.2 "Playfair Display", Georgia, serif;
}

.site-footer__column h2 a {
  text-decoration: none;
}

.site-footer__links {
  display: grid;
  gap: 13px;
}

.site-footer__links a,
.site-footer__contact address a,
.site-footer__contact address span {
  width: fit-content;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-style: normal;
  line-height: 1.65;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible,
.site-footer__contact address a:hover,
.site-footer__contact address a:focus-visible {
  color: #d7bd9e;
  transform: translateX(3px);
}

.site-footer__contact address {
  display: grid;
  gap: 12px;
}

.site-footer__social-links {
  display: grid;
  gap: 12px;
}

.site-footer__social-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.site-footer__social-links a > span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(197, 163, 125, 0.35);
  border-radius: 50%;
  color: #c5a37d;
  font: 600 17px/1 Arial, sans-serif;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.site-footer__social-links svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.site-footer__social-links .social-icon-instagram {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.site-footer__social-links .social-icon-fill {
  fill: currentColor;
  stroke: none;
}

.site-footer__social-links a:hover > span,
.site-footer__social-links a:focus-visible > span {
  border-color: #d7bd9e;
  color: #241f1a;
  background: #d7bd9e;
  transform: translateY(-2px);
}

.site-footer__bottom {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  letter-spacing: 0.35px;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration-color: rgba(197, 163, 125, 0.45);
  text-underline-offset: 4px;
  transition: color 180ms ease;
}

.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
  color: #d7bd9e;
}

@media (max-width: 860px) {
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .site-footer__statement {
    justify-self: start;
    text-align: left;
  }

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

  .site-footer__social {
    grid-column: 1 / -1;
  }

  .site-footer__social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding-top: 60px;
  }

  .site-footer__inner {
    width: calc(100% - 36px);
  }

  .site-footer__top {
    padding-bottom: 40px;
  }

  .site-footer__statement p {
    font-size: 28px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 48px 0;
  }

  .site-footer__social {
    grid-column: auto;
  }

  .site-footer__bottom {
    min-height: 0;
    padding: 24px 0 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.65;
  }

  .site-footer__watermark {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer a,
  .site-footer__social-links a > span {
    transition: none;
  }
}

/* 404 page */
.error-page {
  position: relative;
  min-height: min(720px, calc(100vh - 80px));
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(90px, 12vw, 150px) 24px;
  background:
    radial-gradient(circle at 18% 22%, rgba(197, 163, 125, .14), transparent 28%),
    radial-gradient(circle at 82% 74%, rgba(117, 146, 95, .09), transparent 30%),
    #fdfbf8;
  text-align: center;
}

.error-page__orb {
  position: absolute;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(197, 163, 125, .22);
  border-radius: 44% 56% 63% 37% / 42% 36% 64% 58%;
  transform: rotate(18deg);
}

.error-page__inner {
  position: relative;
  z-index: 1;
  width: min(700px, 100%);
}

.error-page__code {
  margin: 0 0 -26px;
  color: rgba(197, 163, 125, .15);
  font: 600 clamp(110px, 20vw, 220px)/.8 'Playfair Display', serif;
}

.error-page__eyebrow {
  margin: 0 0 18px;
  color: #c29a6c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.error-page h1 {
  margin: 0;
  color: #252525;
  font: 600 clamp(38px, 6vw, 70px)/1.04 'Playfair Display', serif;
}

.error-page__inner > p:not([class]) {
  max-width: 590px;
  margin: 26px auto 0;
  color: #6f6f6f;
  font-size: 15px;
  line-height: 1.9;
}

.error-page__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.error-page__actions .floor-nav__action {
  min-width: 220px;
}

@media (max-width: 560px) {
  .error-page {
    min-height: 640px;
    padding-inline: 18px;
  }

  .error-page__orb {
    width: 330px;
    height: 330px;
  }

  .error-page__actions {
    flex-direction: column;
  }
}
