:root {
  --cream: #f5eadc;
  --paper: #fffaf3;
  --ink: #17261e;
  --green: #244b3a;
  --soft-green: #4f745c;
  --red: #d85b3f;
  --gold: #d5a249;
  --sage: #e7f0e3;
  --peach: #f6e1d2;
  --line: rgba(23, 38, 30, 0.23);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 18px/1.72 var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}

.page-loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  background: #173d2e;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.75s ease,
    visibility 0.75s ease;
}
.page-loader::before,
.page-loader::after {
  content: "";
  position: absolute;
  width: min(68vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(242, 200, 115, 0.16);
  border-radius: 50%;
  animation: loader-orbit 5s ease-in-out infinite alternate;
}
.page-loader::after {
  width: min(46vw, 480px);
  border-color: rgba(255, 255, 255, 0.1);
  animation-delay: -0.9s;
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(76vw, 330px);
}
.page-loader__content img {
  width: min(62vw, 250px);
  height: 130px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  animation: loader-logo 1.7s ease-in-out infinite;
}
.page-loader__line {
  position: relative;
  width: 150px;
  height: 2px;
  margin: 22px 0 17px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}
.page-loader__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--red), #f2c873);
  transform: translateX(-100%);
  animation: loader-line 1.25s ease-in-out infinite;
}
.page-loader__text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: loader-text 1.7s ease-in-out infinite;
}
.page-loader.is-hidden .page-loader__content {
  transform: translateY(-10px);
  transition: transform 0.75s ease;
}
@keyframes loader-line {
  0% {
    transform: translateX(-100%);
  }
  55%,
  100% {
    transform: translateX(100%);
  }
}
@keyframes loader-logo {
  0%,
  100% {
    opacity: 0.72;
    transform: translateY(0) scale(0.98);
  }
  50% {
    opacity: 1;
    transform: translateY(-4px) scale(1);
  }
}
@keyframes loader-text {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}
@keyframes loader-orbit {
  from {
    opacity: 0.55;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1.06);
  }
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 116px;
  padding: 15px 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition:
    height 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}
.site-header.is-scrolled {
  height: 86px;
  background: rgba(25, 34, 28, 0.94);
  border-bottom-color: transparent;
  box-shadow: 0 8px 28px rgba(13, 20, 15, 0.16);
  backdrop-filter: blur(12px);
}
.brand {
  width: 162px;
  height: 84px;
  overflow: hidden;
  display: flex;
  align-items: center;
  transition:
    width 0.35s ease,
    height 0.35s ease,
    transform 0.3s ease;
}
.site-header.is-scrolled .brand {
  width: 138px;
  height: 68px;
}
.brand:hover {
  transform: scale(1.035);
}
.brand img {
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.main-nav {
  display: flex;
  gap: clamp(20px, 2.5vw, 44px);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.main-nav a {
  position: relative;
  padding: 10px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: white;
  transition: width 0.3s ease;
}
.main-nav a:hover::after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.language-picker {
  position: relative;
  font-size: 12px;
}
.language-picker summary {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 118px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 30px;
  background: rgba(20, 35, 26, 0.22);
  cursor: pointer;
  list-style: none;
}
.language-picker summary::-webkit-details-marker {
  display: none;
}
.language-picker summary b,
.language-picker a b {
  color: #f2c873;
  font-size: 11px;
  letter-spacing: 0.08em;
}
.language-picker summary span {
  flex: 1;
  font-weight: 600;
}
.language-picker summary i {
  font-style: normal;
  transition: transform 0.25s ease;
}
.language-picker[open] summary i {
  transform: rotate(180deg);
}
.language-picker > div {
  position: absolute;
  z-index: 30;
  top: calc(100% + 10px);
  right: 0;
  width: 190px;
  padding: 7px;
  color: var(--ink);
  border: 1px solid rgba(23, 38, 30, 0.12);
  border-radius: 10px;
  background: rgba(255, 250, 243, 0.98);
  box-shadow: 0 18px 45px rgba(10, 22, 15, 0.22);
  backdrop-filter: blur(14px);
}
.language-picker a {
  display: grid;
  grid-template-columns: 30px 1fr 15px;
  align-items: center;
  gap: 8px;
  padding: 10px 11px;
  border-radius: 6px;
  transition: background 0.2s ease;
}
.language-picker a:hover,
.language-picker a[aria-current="page"] {
  background: var(--peach);
}
.language-picker a span {
  font-weight: 600;
}
.language-picker a i {
  color: var(--red);
  font-style: normal;
}
.header-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  transition:
    color 0.3s,
    background 0.3s;
}
.header-cta:hover {
  color: var(--ink);
  background: white;
}
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
}
.menu-button span {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: #fff;
  transition: transform 0.3s;
}

.hero {
  position: relative;
  height: max(720px, 100svh);
  min-height: 650px;
  overflow: hidden;
  color: white;
  background: #1e2a22;
}
.hero-images,
.hero-shade {
  position: absolute;
  inset: -8% 0;
}
.hero-images {
  overflow: hidden;
  will-change: transform;
}
.hero-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.08);
  transition:
    opacity 1.4s ease,
    transform 7s ease;
}
.hero-image.active {
  opacity: 1;
  transform: scale(1);
}
.hero-image:first-child { background-position: center 42%; }
.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(15, 24, 18, 0.78) 0%,
      rgba(15, 24, 18, 0.25) 58%,
      rgba(15, 24, 18, 0.18)
    ),
    linear-gradient(0deg, rgba(11, 18, 14, 0.55), transparent 45%);
}
.hero-content {
  position: absolute;
  left: 8vw;
  top: 54%;
  transform: translateY(-50%);
  max-width: 920px;
}
.eyebrow {
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f2c873;
}
.hero h1,
.contact h2 {
  margin-bottom: 28px;
  font-size: clamp(54px, 7vw, 108px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  font-weight: 500;
}
h1 em,
h2 em,
h3 em {
  font-family: var(--serif);
  font-weight: 500;
}
.hero-copy {
  max-width: 690px;
  margin-bottom: 34px;
  font-size: 21px;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.96);
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 36px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-width: 225px;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 0.25s,
    background 0.25s,
    color 0.25s;
}
.button:hover {
  transform: translateY(-3px);
}
.button-light {
  color: var(--ink);
  background: #f5c96f;
}
.button-light:hover {
  background: var(--red);
  color: white;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding: 10px 0 8px;
  font-size: 15px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}
.text-link span {
  transition: transform 0.25s;
}
.text-link:hover span {
  transform: translateX(5px);
}
.text-link.light {
  color: white;
}
.hero-meta {
  position: absolute;
  right: 4vw;
  bottom: 42px;
  display: flex;
  gap: 44px;
}
.hero-meta div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}
.hero-meta span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
.hero-meta .stars {
  margin-left: 4px;
  color: var(--red);
  font-family: var(--sans);
  font-size: 40px;
  letter-spacing: 1px;
}
.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 4vw;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.scroll-hint span {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.55);
  overflow: hidden;
}
.hero-progress {
  position: absolute;
  z-index: 3;
  right: 4vw;
  top: 132px;
  display: flex;
  gap: 8px;
}
.hero-progress span {
  width: 36px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  transition:
    width 0.4s,
    background 0.4s;
}
.hero-progress span.active {
  width: 62px;
  background: white;
}

.section {
  padding: 130px 7vw;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.section-label span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: white;
  border: 1px solid var(--red);
  border-radius: 50%;
  background: var(--red);
  font-size: 10px;
}
.section-label.light {
  color: #f2c873;
}
.section-label.light span {
  color: var(--green);
  border-color: #f2c873;
  background: #f2c873;
}
.intro {
  display: grid;
  grid-template-columns: 0.7fr 1.25fr 1fr;
  grid-template-rows: auto auto;
  gap: 50px 5vw;
  background: var(--paper);
}
.intro > .section-label {
  grid-column: 1;
}
.intro-heading {
  grid-column: 2 / 4;
}
.intro h2,
.apartments h2,
.gallery h2,
.location h2,
.experience h2,
.nearby-head h2,
.booking h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 400;
}
.intro h2 em,
.apartments h2 em,
.gallery h2 em,
.location h2 em,
.experience h2 em,
.nearby-head h2 em,
.booking h2 em {
  font-size: 1.1em;
  font-weight: 500;
}
.hero h1 em,
.detail-hero h1 em,
.explore-hero h1 em {
  color: #f2c873;
}
.intro h2 em,
.apartments h2 em,
.gallery h2 em,
.location h2 em,
.nearby h2 em,
.other-apartments h2 em,
.explore-intro h2 em,
.attraction-list h2 em {
  color: var(--red);
}
.experience h2 em,
.booking h2 em,
.detail-info h2 em,
.explore-cta h2 em {
  color: #f2c873;
}
.intro-copy {
  grid-column: 2;
  padding: 30px 2vw 0 0;
}
.intro-copy p {
  font-size: 18px;
  line-height: 1.85;
  color: #45574c;
}
.intro-copy p:first-child {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.6;
}
.intro-copy .text-link {
  margin-top: 18px;
}
.intro-visual {
  grid-column: 3;
  position: relative;
}
.image-tall {
  height: 550px;
  overflow: hidden;
}
.image-tall img {
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.intro-visual:hover img {
  transform: scale(1.04);
}
.floating-note {
  position: absolute;
  left: -70px;
  bottom: -30px;
  width: 190px;
  height: 150px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  background: #f2c873;
}
.floating-note span {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.floating-note strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.apartments {
  background: linear-gradient(145deg, var(--cream), var(--peach));
}
.apartments-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 75px;
}
.apartments-head .section-label {
  margin-bottom: 30px;
}
.apartments-head > p {
  max-width: 500px;
  margin: 0 4vw 10px 0;
  color: #45574c;
  font-size: 18px;
  line-height: 1.8;
}
.apartment-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 70px 24px;
}
.apartment-card {
  grid-column: span 6;
}
.apartment-card:nth-child(2) {
  margin-top: 130px;
}
.apartment-card:nth-child(3),
.apartment-card:nth-child(5) {
  grid-column: 2 / span 5;
}
.apartment-card:nth-child(4) {
  grid-column: 7 / span 6;
  margin-top: 150px;
}
.apartment-card:nth-child(5) {
  margin-top: -30px;
}
.apartment-image {
  position: relative;
  display: block;
  height: 720px;
  overflow: hidden;
  background: #ddd9cf;
}
.apartment-card:nth-child(3) .apartment-image,
.apartment-card:nth-child(5) .apartment-image {
  height: 420px;
}
.apartment-image img {
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.9s cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 0.4s,
    opacity 0.9s ease;
}
.apartment-image img.apartment-image-next {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transform: scale(1.025);
}
.apartment-image img.apartment-image-next.is-visible {
  opacity: 1;
  transform: scale(1);
}
.apartment-image::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(216, 91, 63, 0.55),
    rgba(242, 200, 115, 0.2) 48%,
    transparent 72%
  );
  opacity: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0);
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    box-shadow 0.35s ease;
}
.apartment-image:hover img {
  filter: saturate(1.12) brightness(1.04);
}
.apartment-image:hover::after {
  opacity: 0.58;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.18);
}
.card-number {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: white;
  background: var(--red);
  font-size: 12px;
  font-weight: 700;
}
.apartment-card:nth-child(even) .card-number {
  color: var(--ink);
  background: #f2c873;
}
.card-arrow {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--ink);
  background: white;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.apartment-image:hover .card-arrow {
  transform: scale(1);
}
.apartment-info {
  padding: 24px 2px;
  border-bottom: 1px solid var(--line);
  transition:
    padding 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}
.apartment-card:hover .apartment-info {
  padding-right: 18px;
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 35px rgba(31, 44, 35, 0.07);
}
.apartment-info h3 {
  margin-bottom: 17px;
  font-size: 31px;
  font-weight: 500;
}
.apartment-info h3 em {
  color: var(--red);
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.card-tags span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: #687169;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.apartment-info > a {
  float: right;
  margin-top: -32px;
  font-size: 11px;
  font-weight: 600;
}
.apartment-info > a span {
  display: inline-block;
  margin-left: 14px;
  transition: transform 0.2s;
}
.apartment-info > a:hover span {
  transform: translateX(5px);
}
.prototype-note {
  margin: 50px 0 0;
  color: #45574c;
  font-size: 14px;
}

.card-slider {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  color: white;
  background: rgba(24, 34, 28, 0.78);
}
.card-slider button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: white;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition:
    color 0.2s,
    background 0.2s;
}
.card-slider button:hover {
  color: var(--ink);
  background: white;
}
.card-slider span {
  min-width: 46px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.apartment-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding-right: 0;
}
.apartment-facts > span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 11px 12px;
  color: #45574c;
  /* border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.5); */
  font-size: 15px;
  line-height: 1.3;
  text-transform: uppercase;
}
.apartment-facts > span > span {
  display: block;
}
.apartment-facts svg,
.card-price svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.apartment-facts strong {
  color: var(--ink);
  font-weight: 600;
}
.card-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: #4f6055;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.card-price strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  text-transform: none;
}
.apartment-details {
  display: inline-flex;
  align-items: center;
  float: none;
  margin-top: 20px;
  padding: 9px 0;
  color: var(--green);
  border: 0;
  border-bottom: 2px solid var(--red);
  background: transparent;
  font: 700 14px var(--sans);
  cursor: pointer;
}
.apartment-details span {
  display: inline-block;
  margin-left: 12px;
  transition: transform 0.25s;
}
.apartment-details:hover span {
  transform: translate(4px, -3px);
}
.apartment-info > .apartment-details {
  float: none;
  margin-top: 20px;
  font-size: 14px;
}

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

.apartment-actions .apartment-details {
  margin-top: 0;
}

.apartment-availability {
  padding: 10px 14px;
  border: 0;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.apartment-availability:hover {
  background: #3d5645;
  transform: translateY(-1px);
}
.price-periods {
  margin-top: 20px;
  border-top: 1px solid var(--line);
}
.price-periods div {
  display: flex;
  justify-content: space-between;
  padding: 11px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.price-periods span {
  color: #4f6055;
}
.price-periods strong {
  font-weight: 600;
}

.experience {
  position: relative;
  min-height: 870px;
  display: grid;
  grid-template-columns: 43% 57%;
  color: white;
  background: linear-gradient(145deg, #285540, #17382b);
  overflow: hidden;
}
.experience-image {
  background: var(--rozi-garden, url("../images/garden.webp")) center / cover no-repeat;
  margin: -8% 0;
}
.experience-content {
  padding: 120px 7vw 100px;
}
.experience h2 {
  max-width: 700px;
  margin: 55px 0 70px;
}
.amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.amenity:nth-child(odd) {
  padding-right: 20px;
}
.amenity:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.amenity-icon {
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 21px;
  transition:
    color 0.35s ease,
    background 0.35s ease,
    transform 0.35s ease;
}
.amenity:hover .amenity-icon {
  color: var(--green);
  background: white;
  transform: rotate(-7deg) scale(1.08);
}
.amenity div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.amenity strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
}
.amenity small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.gallery {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 8vw;
  padding-top: 150px;
  padding-bottom: 160px;
  background: linear-gradient(135deg, var(--paper), #f8e8dc);
}
.gallery-copy {
  position: sticky;
  top: 50px;
  align-self: start;
  padding-top: 30px;
}
.gallery-copy .section-label {
  margin-bottom: 35px;
}
.gallery-copy p {
  margin-top: 35px;
  max-width: 380px;
  color: #45574c;
  font-size: 17px;
  line-height: 1.85;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: end;
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
}
.gallery-grid img {
  height: 100%;
  object-fit: cover;
}
.gallery-main {
  height: 550px;
}
.gallery-small {
  height: 350px;
}
.gallery-wide {
  grid-column: 1 / 3;
  width: 82%;
  height: 340px;
  margin-left: auto !important;
}

.nearby {
  background: var(--sage);
}
.nearby-head {
  display: grid;
  grid-template-columns: 0.7fr 1.25fr 1fr;
  gap: 5vw;
  align-items: end;
  margin-bottom: 70px;
}
.nearby-head h2 {
  margin: 0;
}
.nearby-head p {
  margin: 0;
  color: #45574c;
  font-size: 18px;
  line-height: 1.8;
}
.nearby-list {
  border-top: 1px solid var(--line);
}
.nearby-list a {
  display: grid;
  grid-template-columns: 70px 1fr 140px 50px;
  align-items: center;
  padding: 25px 8px;
  border-bottom: 1px solid var(--line);
  transition:
    color 0.3s,
    padding 0.3s,
    background 0.3s;
}
.nearby-list a:hover {
  padding-left: 22px;
  padding-right: 22px;
  color: white;
  background: var(--green);
}
.nearby-list span {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}
.nearby-list strong {
  font: 500 27px var(--serif);
}
.nearby-list small {
  color: #526359;
  font-size: 13px;
}
.nearby-list a:hover small {
  color: rgba(255, 255, 255, 0.65);
}
.nearby-list b {
  font-weight: 400;
  text-align: right;
}
.nearby-button {
  margin-top: 40px;
}

.location {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 7vw;
  background: var(--peach);
}
.location-copy {
  align-self: center;
}
.location-copy .section-label {
  margin-bottom: 35px;
}
.location-copy > p {
  max-width: 570px;
  margin: 35px 0;
  color: #45574c;
  font-size: 18px;
  line-height: 1.8;
}
.distance-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 42px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.distance-list div {
  padding: 22px 10px 22px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.distance-list strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}
.distance-list span {
  color: #4f6055;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.button-dark {
  color: white;
  background: var(--green);
}
.button-dark:hover {
  background: var(--red);
}
.map-wrap {
  min-height: 630px;
  filter: saturate(0.65);
  transition: filter 0.4s;
}
.map-wrap:hover {
  filter: saturate(1);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.booking {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 8vw;
  color: white;
  background: linear-gradient(145deg, #244b3a, #18372b);
}
.booking-intro .section-label {
  margin-bottom: 38px;
  color: #f2c873;
}
.booking h2 {
  margin: 0 0 35px;
}
.booking-intro > p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.8;
}
.booking-direct {
  margin-top: 55px;
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.booking-direct small {
  margin-bottom: 7px;
  color: #f2c873;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.booking-direct a:first-of-type {
  font: 500 25px var(--serif);
}
.booking-direct a:last-child {
  margin-top: 8px;
  font-size: 26px;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.75); */
}
.booking-form {
  padding: 48px;
  color: var(--ink);
  background: var(--paper);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-row--three {
  grid-template-columns: 1fr 1fr 0.7fr;
}
.booking-form label {
  display: block;
  margin-bottom: 23px;
}
.booking-form label > span:first-child {
  display: block;
  margin-bottom: 9px;
  color: #45574c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 14px 2px;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font: 17px var(--sans);
  transition: border-color 0.2s;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--red);
}
.booking-form textarea {
  resize: vertical;
}
.booking-form .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.booking-form .form-consent input {
  flex: 0 0 16px;
  width: 16px;
  margin-top: 2px;
}
.booking-form .form-consent span {
  margin: 0;
  color: #405247;
  font-size: 14px;
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0;
}
.website-field {
  position: absolute;
  left: -9999px;
}
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.form-status {
  max-width: 380px;
  margin: 0;
  color: #45574c;
  font-size: 14px;
  line-height: 1.5;
}
.form-status.success {
  color: #34704b;
}
.form-status.error {
  color: #b53d2f;
}
.booking-form button[disabled] {
  opacity: 0.55;
  cursor: wait;
}

.booking-availability-prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: -4px 0 25px;
  padding: 16px 18px;
  color: var(--ink);
  border-left: 3px solid var(--gold);
  border-radius: 0 7px 7px 0;
  background: linear-gradient(100deg, #f8e8c3, #edf3e9);
}
.booking-availability-prompt[hidden] {
  display: none;
}
.booking-availability-prompt div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.booking-availability-prompt strong {
  font-size: 14px;
}
.booking-availability-prompt span {
  color: #526359;
  font-size: 12px;
  line-height: 1.45;
}
.booking-availability-prompt a {
  flex: 0 0 auto;
  padding-bottom: 3px;
  color: var(--red);
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
}

.availability-calendar {
  width: min(100%, 430px);
  margin: 0 auto 34px;
  padding: 18px;
  border: 1px solid rgba(36, 75, 58, 0.18);
  border-radius: 14px;
  background: linear-gradient(145deg, #fffaf3, #edf3e9);
  box-shadow: 0 14px 35px rgba(31, 52, 40, 0.08);
}
.availability-calendar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.availability-calendar__head > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.availability-calendar__head > div:first-child > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.availability-calendar__title {
  font: 500 21px/1.2 var(--serif);
}
.availability-calendar__navigation {
  display: flex;
  gap: 7px;
}
.availability-calendar__navigation button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: white;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
}
.availability-calendar__navigation button:disabled {
  opacity: 0.25;
  cursor: default;
}
.availability-calendar__message {
  margin: 10px 0 14px;
  color: #526359;
  font-size: 12px;
  line-height: 1.5;
}
.availability-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 3px;
}
.calendar-weekday {
  padding: 4px 0 6px;
  color: #69776e;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.booking-form .calendar-day {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  min-width: 0;
  padding: 0;
  color: var(--ink);
  border: 1px solid rgba(36, 75, 58, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  font: 600 11px/1 var(--sans);
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}
.booking-form .calendar-day--blank {
  border-color: transparent;
  background: transparent;
}
.booking-form .calendar-day.is-available:not(:disabled):hover {
  color: white;
  border-color: var(--green);
  background: var(--green);
  transform: translateY(-2px);
}
.booking-form .calendar-day.is-occupied {
  color: white;
  border-color: var(--red);
  background: var(--red);
  opacity: 1;
  cursor: not-allowed;
}
.booking-form .calendar-day.is-past {
  color: #9aa39d;
  border-color: transparent;
  background: transparent;
  opacity: 0.65;
  cursor: default;
}
.booking-form .calendar-day.is-selected {
  color: var(--ink);
  border-color: #d5a249;
  background: #f2c873;
  box-shadow: 0 0 0 2px rgba(213, 162, 73, 0.2);
}
.booking-form .calendar-day.is-selected-range:not(.is-occupied) {
  color: var(--ink);
  border-color: #ead09b;
  background: #f8e8c3;
}
.availability-calendar__legend {
  display: flex;
  gap: 20px;
  margin-top: 13px;
  color: #526359;
  font-size: 11px;
}
.availability-calendar__legend span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.availability-calendar__legend i {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(36, 75, 58, 0.2);
  border-radius: 50%;
  background: white;
}
.availability-calendar__legend span:last-child i {
  border-color: var(--red);
  background: var(--red);
}

.apartment-modal {
  width: min(94vw, 1380px);
  height: min(92vh, 880px);
  max-width: none;
  max-height: none;
  padding: 0;
  color: var(--ink);
  border: 0;
  background: var(--paper);
  overflow: hidden;
}
.apartment-modal[open] {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
}
.apartment-modal::backdrop {
  background: rgba(18, 25, 20, 0.82);
  backdrop-filter: blur(3px);
}
.modal-close {
  position: absolute;
  z-index: 8;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--ink);
  border: 0;
  border-radius: 50%;
  background: white;
  font-size: 27px;
  cursor: pointer;
  transition:
    color 0.2s,
    background 0.2s,
    transform 0.2s;
}
.modal-close:hover {
  color: white;
  background: var(--red);
  transform: rotate(6deg);
}
.modal-gallery {
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr 105px;
  gap: 8px;
  padding: 8px;
  background: #1b241e;
  overflow: hidden;
}
.modal-main-image {
  position: relative;
  min-height: 0;
  overflow: hidden;
}
.modal-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-main-image button {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--ink);
  border: 0;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  transform: translateY(-50%);
}
.modal-main-image button:first-of-type {
  left: 18px;
}
.modal-main-image button:last-of-type {
  right: 18px;
}
.modal-count {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 12px;
  color: white;
  background: rgba(20, 29, 23, 0.75);
  font-size: 10px;
}
.modal-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.modal-thumbs button {
  flex: 0 0 120px;
  height: 88px;
  padding: 0;
  border: 2px solid transparent;
  opacity: 0.56;
  background: none;
  cursor: pointer;
  overflow: hidden;
}
.modal-thumbs button.active {
  border-color: var(--red);
  opacity: 1;
}
.modal-thumbs img {
  height: 100%;
  object-fit: cover;
}
.modal-content {
  padding: 65px 44px 45px;
  overflow-y: auto;
}
.modal-content .eyebrow {
  color: var(--soft-green);
}
.modal-content h2 {
  margin: 0 0 22px;
  font-size: clamp(40px, 4.3vw, 66px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.modal-description {
  color: #45574c;
  font-size: 16px;
  line-height: 1.75;
}
.modal-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 30px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.modal-facts div {
  padding: 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.modal-facts strong {
  display: block;
  font: 500 23px var(--serif);
}
.modal-facts span {
  color: #526359;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.modal-amenities h3 {
  font-size: 15px;
  font-weight: 600;
}
.modal-amenities ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0;
  list-style: none;
  color: #45574c;
  font-size: 13px;
}
.modal-amenities li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal-amenities li::before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 23px;
  height: 23px;
  margin-right: 2px;
  color: white;
  border-radius: 50%;
  background: var(--red);
  font-size: 11px;
}
.modal-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 30px 0 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.modal-price span,
.modal-price small {
  color: #526359;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.modal-price strong {
  font: 500 28px var(--serif);
}

/* Apartment detail pages */
.inner-header {
  position: fixed;
}
.detail-hero {
  position: relative;
  height: min(880px, 92svh);
  min-height: 680px;
  overflow: hidden;
  color: white;
  background: var(--green);
}
.detail-hero-images {
  position: absolute;
  inset: 0;
}
.detail-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.detail-hero-image.active {
  opacity: 1;
}
.detail-hero-progress {
  position: absolute;
  z-index: 3;
  right: 4vw;
  top: 140px;
  display: flex;
  gap: 8px;
}
.detail-hero-progress span {
  width: 34px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  transition:
    width 0.4s ease,
    background 0.4s ease;
}
.detail-hero-progress span.active {
  width: 58px;
  background: #f2c873;
}
.detail-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 27, 21, 0.82), rgba(18, 27, 21, 0.12) 70%),
    linear-gradient(0deg, rgba(14, 22, 17, 0.6), transparent 55%);
}
.detail-hero-content {
  position: absolute;
  left: 8vw;
  top: 50%;
  max-width: 800px;
  transform: translateY(-42%);
}
.detail-hero-content h1 {
  margin: 0 0 28px;
  font-size: clamp(60px, 8vw, 116px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 500;
}
.detail-hero-content > p:last-child {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.75;
}
.detail-hero-facts {
  position: absolute;
  right: 4vw;
  bottom: 32px;
  display: flex;
  gap: 8px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(18, 28, 22, 0.56);
  backdrop-filter: blur(12px);
}
.detail-hero-facts > span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 112px;
  padding: 9px 11px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.3;
  text-transform: uppercase;
}
.detail-hero-facts > span > span {
  display: flex;
  flex-direction: column;
}
.detail-hero-facts svg {
  flex: 0 0 auto;
  width: 35px;
  height: 35px;
  fill: none;
  stroke: white;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.detail-hero-facts strong {
  color: white;
  font: 500 17px var(--serif);
  text-transform: none;
  white-space: nowrap;
}
.detail-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 9vw;
  align-items: end;
}
.detail-intro .section-label,
.detail-gallery-section .section-label {
  margin-bottom: 35px;
}
.detail-intro h2,
.detail-info h2,
.other-apartments h2 {
  margin: 0;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  font-weight: 500;
}
.detail-copy p {
  color: #45574c;
  font-size: 18px;
  line-height: 1.8;
}
.detail-copy p:first-child {
  color: var(--ink);
  font-size: 22px;
}
.detail-gallery-section {
  padding-top: 20px;
  background: var(--cream);
}
.detail-gallery {
  columns: 2;
  column-gap: clamp(18px, 2.5vw, 38px);
}
.detail-gallery figure {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 clamp(18px, 2.5vw, 38px);
  overflow: hidden;
  break-inside: avoid;
}
.detail-gallery figure:nth-child(4n + 2) {
  width: 88%;
  margin-left: 12%;
}
.detail-gallery figure:nth-child(5n + 4) {
  width: 92%;
}
.detail-gallery-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  color: white;
  border: 0;
  background: #17382b;
  cursor: zoom-in;
}
.detail-gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.detail-gallery-item > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 30px;
  background: rgba(18, 31, 23, 0.72);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.detail-gallery-item::after {
  content: "Otvori ↗";
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 11px;
  border-radius: 30px;
  background: var(--red);
  font: 700 11px/1 var(--sans);
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(-5px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.detail-gallery-item:hover::after,
.detail-gallery-item:focus-visible::after {
  opacity: 1;
  transform: none;
}
.image-lightbox {
  width: 100vw;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: white;
  border: 0;
  background: #0d1712;
}
.image-lightbox[open] {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 90px;
  align-items: center;
}
.image-lightbox::backdrop {
  background: #0d1712;
}
.image-lightbox figure {
  min-width: 0;
  height: 100dvh;
  margin: 0;
  padding: 38px 0 25px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 15px;
}
.image-lightbox figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.image-lightbox figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.image-lightbox figcaption strong {
  color: white;
  font-weight: 600;
}
.image-lightbox__close,
.image-lightbox__arrow {
  z-index: 2;
  display: grid;
  place-items: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}
.image-lightbox__close:hover,
.image-lightbox__arrow:hover {
  color: var(--ink);
  border-color: #f2c873;
  background: #f2c873;
}
.image-lightbox__close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 50px;
  height: 50px;
  font-size: 30px;
  line-height: 1;
}
.image-lightbox__arrow {
  width: 54px;
  height: 54px;
  margin: auto;
  font-size: 23px;
}
.detail-info {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 8vw;
  color: white;
  background: linear-gradient(145deg, #285540, #17382b);
}
.detail-amenities .section-label {
  margin-bottom: 35px;
}
.detail-amenities ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 25px;
  margin-top: 55px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.detail-amenities li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 15px;
  transition:
    padding-left 0.3s ease,
    background 0.3s ease;
}
.detail-amenities li::before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 27px;
  height: 27px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  font-size: 11px;
  transition:
    color 0.3s ease,
    background 0.3s ease;
}
.detail-amenities li:hover {
  padding-left: 9px;
  background: rgba(255, 255, 255, 0.05);
}
.detail-amenities li:hover::before {
  color: var(--green);
  background: white;
}
.detail-pricing {
  align-self: center;
  padding: 45px;
  color: var(--ink);
  background: var(--paper);
}
.detail-pricing h3 {
  margin-bottom: 8px;
  font: 500 34px var(--serif);
}
.detail-pricing > p,
.detail-pricing > small {
  color: #4f6055;
  font-size: 14px;
}
.pricing-table {
  margin: 30px 0 20px;
  border-top: 1px solid var(--line);
}
.pricing-table > div {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 10px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.pricing-table .pricing-head {
  color: #526359;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.detail-pricing .button {
  margin-top: 30px;
}
.other-apartments .section-label {
  margin-bottom: 35px;
}
.other-apartments > div:last-child {
  margin-top: 60px;
  border-top: 1px solid var(--line);
}
.other-apartments > div:last-child a {
  display: grid;
  grid-template-columns: 1fr 1fr 40px;
  align-items: center;
  padding: 24px 5px;
  border-bottom: 1px solid var(--line);
  transition:
    padding 0.3s,
    color 0.3s,
    background 0.3s;
}
.other-apartments > div:last-child a:hover {
  padding-left: 20px;
  padding-right: 20px;
  color: white;
  background: var(--green);
}
.other-apartments a span {
  font: 500 25px var(--serif);
}
.other-apartments a small {
  color: #747d75;
}

/* Explore Umag page */
.explore-hero {
  position: relative;
  height: 88svh;
  min-height: 680px;
  overflow: hidden;
  color: white;
}
.explore-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--rozi-garden, url("../images/garden.webp")) center / cover no-repeat;
  transform: scale(1.04);
}
.explore-hero > div:last-child {
  position: absolute;
  z-index: 2;
  left: 8vw;
  top: 52%;
  max-width: 950px;
  transform: translateY(-45%);
}
.explore-hero h1 {
  margin: 0 0 30px;
  font-size: clamp(58px, 7vw, 105px);
  line-height: 0.97;
  letter-spacing: -0.04em;
  font-weight: 500;
}
.explore-hero > div:last-child > p:last-child {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}
.explore-intro {
  display: grid;
  grid-template-columns: 0.6fr 1.2fr 0.8fr;
  gap: 5vw;
  align-items: end;
}
.explore-intro h2 {
  margin: 0;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  font-weight: 500;
}
.explore-intro > p {
  color: #45574c;
  font-size: 18px;
  line-height: 1.8;
}
.attraction-list {
  padding-top: 20px;
  background: linear-gradient(145deg, var(--cream), var(--peach));
}
.attraction-list article {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 7vw;
  padding: 80px 4vw;
  border-top: 1px solid var(--line);
  scroll-margin-top: 30px;
}
.attraction-list article > span {
  padding-top: 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.attraction-list h2 {
  margin: 0 0 22px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.attraction-list p {
  max-width: 740px;
  color: #45574c;
  font-size: 18px;
  line-height: 1.8;
}
.attraction-list a {
  display: inline-block;
  margin-top: 15px;
  padding-bottom: 7px;
  color: var(--green);
  border-bottom: 2px solid var(--red);
  font-size: 14px;
  font-weight: 700;
}
.explore-cta {
  padding: 140px 7vw;
  color: white;
  text-align: center;
  background: linear-gradient(145deg, #285540, #17382b);
}
.explore-cta h2 {
  margin: 0 auto 45px;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.contact {
  position: relative;
  min-height: 700px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  text-align: center;
  background: #1b251e;
}
.contact-bg {
  position: absolute;
  inset: -10% 0;
  background:
    linear-gradient(rgba(20, 29, 23, 0.77), rgba(20, 29, 23, 0.82)),
    var(--rozi-house, url("../images/house.webp")) center / cover no-repeat;
}
.contact-inner {
  position: relative;
  z-index: 1;
  width: min(90%, 980px);
}
.contact h2 {
  margin-bottom: 30px;
  font-size: clamp(50px, 6.5vw, 90px);
}
.contact-inner > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.8;
}
.contact-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.button-accent {
  color: white;
  background: var(--red);
}
.button-accent:hover {
  color: var(--ink);
  background: white;
}
.phone-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  text-align: left;
}
.phone-link small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.phone-link strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

footer {
  padding: 70px 7vw 24px;
  color: white;
  background: #152d23;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.7fr;
  gap: 50px;
  padding-bottom: 65px;
}
.footer-main > img {
  width: 185px;
  filter: brightness(0) invert(1);
  transition: transform 0.35s ease;
}
.footer-main > img:hover {
  transform: translateY(-4px) scale(1.03);
}
.footer-main div {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 16px;
  line-height: 1.65;
}
.footer-main div > span {
  margin-bottom: 10px;
  color: #f2c873;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-main a {
  width: fit-content;
}
.footer-main a:hover {
  color: #ef6a55;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.floating-actions {
  position: fixed;
  z-index: 18;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.floating-action {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--green);
  border: 2px solid rgba(40, 59, 48, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px rgba(18, 27, 21, 0.18);
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.floating-action svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.floating-action--top {
  color: white;
  border-color: var(--red);
  background: var(--red);
}
.floating-action--whatsapp {
  color: white;
  border-color: #2f9e62;
  background: #2f9e62;
}
.floating-action--mail {
  color: var(--ink);
  border-color: #f2c873;
  background: #f2c873;
}
.floating-action--top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.show-top .floating-action--top {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.floating-action::before {
  content: attr(data-label);
  position: absolute;
  right: 60px;
  padding: 6px 10px;
  color: white;
  border-radius: 3px;
  background: rgba(25, 34, 28, 0.94);
  font-size: 10px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.floating-action:hover {
  color: white;
  border-color: var(--green);
  background: var(--green);
  transform: translateY(-3px);
}
.floating-action:focus-visible {
  outline: 3px solid rgba(239, 106, 85, 0.45);
  outline-offset: 3px;
}
.floating-action:hover::before {
  opacity: 1;
  transform: none;
}

@media (max-width: 1150px) {
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
    background: var(--green);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s,
      visibility 0.3s;
  }
  .main-nav a {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 500;
  }
  .menu-open .main-nav {
    z-index: 10;
    opacity: 1;
    visibility: visible;
  }
  .menu-button {
    display: block;
    position: relative;
    z-index: 11;
  }
  .menu-open .menu-button span:first-child {
    transform: translateY(3px) rotate(45deg);
  }
  .menu-open .menu-button span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }
  .languages,
  .header-cta {
    display: none;
  }
  .intro {
    grid-template-columns: 0.6fr 1.4fr;
  }
  .intro-heading {
    grid-column: 1 / 3;
  }
  .intro-copy {
    grid-column: 1;
  }
  .intro-visual {
    grid-column: 2;
  }
  .experience {
    grid-template-columns: 36% 64%;
  }
  .experience-content {
    padding: 100px 5vw;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery-copy {
    position: static;
    max-width: 600px;
  }
  .location {
    grid-template-columns: 1fr;
  }
  .map-wrap {
    min-height: 480px;
  }
  .nearby-head {
    grid-template-columns: 1fr 1fr;
  }
  .nearby-head .section-label {
    grid-column: 1 / 3;
  }
  .booking {
    grid-template-columns: 1fr;
  }
  .booking-intro {
    max-width: 700px;
  }
  .apartment-modal[open] {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
  .apartment-modal {
    height: 94vh;
  }
  .modal-gallery {
    min-height: 650px;
  }
  .modal-content {
    overflow: visible;
  }
  .detail-intro,
  .detail-info {
    grid-template-columns: 1fr;
  }
  .detail-hero-facts {
    left: 8vw;
    right: auto;
  }
  .explore-intro {
    grid-template-columns: 1fr 1fr;
  }
  .explore-intro .section-label {
    grid-column: 1 / 3;
  }
}

@media (max-width: 700px) {
  .site-header {
    height: 84px;
    padding: 12px 20px;
  }
  .site-header.is-scrolled {
    height: 74px;
  }
  .brand,
  .site-header.is-scrolled .brand {
    width: 118px;
    height: 64px;
  }
  .header-actions {
    gap: 10px;
  }
  .language-picker summary {
    min-width: 52px;
    padding: 9px 10px;
  }
  .language-picker summary span {
    display: none;
  }
  .hero {
    min-height: 700px;
  }
  .hero-content {
    left: 24px;
    right: 24px;
    top: 48%;
  }
  .hero h1 {
    font-size: clamp(48px, 14vw, 67px);
  }
  .hero-copy {
    font-size: 17px;
    line-height: 1.65;
  }
  .hero-buttons {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .hero-meta {
    left: 24px;
    right: auto;
    bottom: 26px;
    gap: 24px;
  }
  .hero-meta strong {
    font-size: 22px;
  }
  .hero-progress {
    top: auto;
    right: 24px;
    bottom: 128px;
  }
  .scroll-hint {
    display: none;
  }
  .section {
    padding: 90px 24px;
  }
  .intro {
    display: block;
  }
  .intro > * {
    margin-bottom: 38px;
  }
  .intro h2,
  .apartments h2,
  .gallery h2,
  .location h2,
  .experience h2,
  .nearby-head h2,
  .booking h2 {
    font-size: 40px;
  }
  .intro-copy {
    padding: 0;
  }
  .image-tall {
    height: 470px;
  }
  .floating-note {
    left: -8px;
    bottom: -22px;
  }
  .apartments-head {
    display: block;
  }
  .apartments-head > p {
    margin: 35px 0 0;
  }
  .apartment-list {
    display: block;
  }
  .apartment-card,
  .apartment-card:nth-child(n) {
    margin: 0 0 65px;
  }
  .apartment-image,
  .apartment-card:nth-child(n) .apartment-image {
    height: 390px;
  }
  .apartment-info > a {
    float: none;
    display: block;
    margin: 22px 0 0;
  }
  .apartment-facts {
    padding-right: 0;
  }
  .apartment-details {
    float: none;
    margin-top: 20px;
  }
  .experience {
    display: block;
  }
  .experience-image {
    height: 430px;
    margin: 0;
  }
  .experience-content {
    padding: 85px 24px;
  }
  .experience h2 {
    margin: 40px 0 55px;
  }
  .amenities {
    grid-template-columns: 1fr;
  }
  .amenity:nth-child(n) {
    padding: 20px 0;
    border-left: 0;
  }
  .gallery {
    gap: 45px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .gallery-main {
    height: 430px;
  }
  .gallery-small {
    height: 340px;
  }
  .gallery-wide {
    grid-column: 1;
    width: 100%;
    height: 300px;
  }
  .nearby-head {
    display: block;
  }
  .nearby-head > * {
    margin-bottom: 30px;
  }
  .nearby-list a {
    grid-template-columns: 45px 1fr 30px;
  }
  .nearby-list small {
    display: none;
  }
  .nearby-list strong {
    font-size: 23px;
  }
  .distance-list {
    gap: 10px;
  }
  .distance-list strong {
    font-size: 20px;
  }
  .map-wrap {
    min-height: 420px;
  }
  .booking-form {
    padding: 30px 22px;
  }
  .form-row,
  .form-row--three {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .modal-gallery {
    min-height: 460px;
    grid-template-rows: 1fr 82px;
  }
  .modal-thumbs button {
    flex-basis: 95px;
    height: 68px;
  }
  .modal-content {
    padding: 48px 23px 35px;
  }
  .modal-content h2 {
    font-size: 43px;
  }
  .modal-close {
    width: 40px;
    height: 40px;
  }
  .detail-hero {
    min-height: 750px;
  }
  .detail-hero-content {
    left: 24px;
    right: 24px;
    top: 43%;
  }
  .detail-hero-content h1 {
    font-size: 54px;
  }
  .detail-hero-content > p:last-child {
    font-size: 17px;
  }
  .detail-hero-facts {
    left: 24px;
    right: 24px;
    bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .detail-intro {
    display: block;
  }
  .detail-copy {
    margin-top: 40px;
  }
  .detail-gallery {
    columns: 1;
  }
  .detail-gallery figure,
  .detail-gallery figure:nth-child(4n + 2),
  .detail-gallery figure:nth-child(5n + 4) {
    width: 100%;
    height: auto;
    margin-left: 0;
  }
  .image-lightbox[open] {
    display: block;
  }
  .image-lightbox figure {
    height: 100dvh;
    padding: 70px 12px 82px;
  }
  .image-lightbox figcaption {
    padding: 0;
    font-size: 12px;
  }
  .image-lightbox__close {
    top: 14px;
    right: 14px;
    width: 46px;
    height: 46px;
  }
  .image-lightbox__arrow {
    position: absolute;
    bottom: 15px;
    width: 48px;
    height: 48px;
  }
  .image-lightbox__arrow--prev {
    left: calc(50% - 58px);
  }
  .image-lightbox__arrow--next {
    right: calc(50% - 58px);
  }
  .detail-info {
    display: block;
  }
  .detail-pricing {
    margin-top: 60px;
    padding: 28px 20px;
  }
  .detail-amenities ul {
    grid-template-columns: 1fr;
  }
  .pricing-table > div {
    grid-template-columns: 1.1fr 0.6fr 0.8fr;
    font-size: 13px;
  }
  .other-apartments > div:last-child a {
    grid-template-columns: 1fr 30px;
  }
  .other-apartments a small {
    display: none;
  }
  .explore-hero > div:last-child {
    left: 24px;
    right: 24px;
  }
  .explore-hero h1 {
    font-size: 52px;
  }
  .explore-intro {
    display: block;
  }
  .explore-intro > * {
    margin-bottom: 32px;
  }
  .attraction-list article {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 60px 0;
  }
  .attraction-list h2 {
    font-size: 43px;
  }
  .contact {
    min-height: 690px;
    padding: 80px 24px;
  }
  .contact h2 {
    font-size: 47px;
  }
  .contact-actions {
    flex-direction: column;
    gap: 25px;
  }
  .phone-link {
    align-items: center;
    text-align: center;
  }
  .booking-availability-prompt {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  footer {
    padding: 60px 24px 22px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 45px 24px;
  }
  .footer-main > img {
    grid-column: 1 / 3;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
  .floating-actions {
    right: 14px;
    bottom: 14px;
    gap: 8px;
  }
  .floating-action {
    width: 45px;
    height: 45px;
  }
  .floating-action::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

.availability-modal {
  width: min(680px, calc(100vw - 32px));
  max-height: min(780px, calc(100vh - 32px));
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: #f8f6f1;
  box-shadow: 0 24px 80px rgba(20, 30, 24, 0.32);
}

.cookie-banner{position:fixed;z-index:1000;right:20px;bottom:20px;max-width:460px;padding:22px;border-radius:12px;background:#f4f0e7;color:#283b30;box-shadow:0 15px 50px rgba(0,0,0,.25)}.cookie-banner p{margin:0 0 14px;line-height:1.5}.cookie-banner a{color:#283b30;font-weight:700}.cookie-banner div{display:flex;gap:10px;justify-content:flex-end}.cookie-banner button{padding:10px 14px;border:1px solid #283b30;border-radius:4px;background:transparent;color:#283b30;cursor:pointer}.cookie-banner button[data-cookie-choice="all"]{background:#283b30;color:#fff}.privacy-page{max-width:850px}.privacy-page h1{font-family:Georgia,serif;font-size:48px}.privacy-page h2{margin-top:38px}

.availability-modal::backdrop {
  background: rgba(17, 28, 21, 0.68);
}

.availability-modal__content {
  position: relative;
  padding: 36px;
}

.availability-modal__content > h2 {
  margin: 0 44px 22px 0;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 500;
}

.availability-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.availability-modal .availability-calendar {
  margin: 0;
}

@media (max-width: 600px) {
  .availability-modal__content {
    padding: 26px 20px;
  }

  .availability-modal__content > h2 {
    font-size: 25px;
  }
}
