@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap");

:root {
  --nz-ink: #1f2923;
  --nz-ink-soft: #556158;
  --nz-forest: #213b30;
  --nz-forest-deep: #14251e;
  --nz-sage: #a9bcae;
  --nz-sage-soft: #e9eee9;
  --nz-cream: #f7f4ec;
  --nz-sand: #e9dfcf;
  --nz-white: #ffffff;
  --nz-accent: #b56b3f;
  --nz-accent-dark: #8f4d2d;
  --nz-border: rgba(31, 41, 35, 0.13);
  --nz-shadow: 0 25px 80px rgba(25, 42, 33, 0.12);
  --nz-radius-sm: 18px;
  --nz-radius-md: 30px;
  --nz-radius-lg: 48px;
  --nz-shell: 1440px;
}

html {
  scroll-behavior: smooth;
}

body.home,
body {
  background: var(--nz-cream);
}

body.home header,
body header.nz-premium-header {
  width: 100%;
  transition: background-color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}

body.home header.is-scrolled,
body header.is-scrolled {
  background: rgba(247, 244, 236, .84);
  box-shadow: 0 10px 35px rgba(20, 37, 30, .07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.home .navbar,
body .navbar {
  min-height: 92px;
  padding: 0 3%;
}

body.home .navbar__logo,
body .navbar__logo {
  padding-left: 0;
}

body.home .navbar__logo img,
body .navbar__logo img {
  height: 74px;
}

body.home .navbar__logo h1,
body .navbar__logo h1 {
  color: var(--nz-ink);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  letter-spacing: .2em;
}

body.home .navbar__links,
body .navbar__links {
  gap: 0 2rem;
  padding-right: 0;
}

body.home .navbar__link a,
body .navbar__link a {
  position: relative;
  color: var(--nz-ink);
  border: 0;
  padding: 12px 0;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.home .navbar__link a::after,
body .navbar__link a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}

body.home .navbar__link a:hover,
body .navbar__link a:hover {
  border: 0;
}

body.home .navbar__link a:hover::after,
body .navbar__link a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.norka-home,
.norka-home * {
  box-sizing: border-box;
}

.norka-home {
  overflow: hidden;
  background: var(--nz-cream);
  color: var(--nz-ink);
  font-family: "Manrope", sans-serif;
}

.norka-home h1,
.norka-home h2,
.norka-home h3,
.norka-home p {
  margin: 0;
}

.norka-home p {
  color: var(--nz-ink-soft);
}

.norka-home a {
  color: inherit;
}

.nz-shell {
  width: min(calc(100% - 80px), var(--nz-shell));
  margin-inline: auto;
}

.nz-section {
  position: relative;
  padding: clamp(90px, 9vw, 150px) 0;
}

.nz-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  color: var(--nz-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nz-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.nz-section-heading h2 {
  max-width: 760px;
  color: var(--nz-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.045em;
}

.nz-section-heading > p {
  max-width: 630px;
  margin-top: 28px;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.8;
}

.nz-section-heading--light h2,
.nz-section-heading--light p {
  color: var(--nz-white);
}

.nz-section-heading--light p {
  opacity: .72;
}

.nz-btn {
  display: inline-flex;
  min-width: 0;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .35s ease, background-color .35s ease, color .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.nz-btn span {
  font-size: 18px;
  line-height: 1;
  transition: transform .35s ease;
}

.nz-btn:hover {
  transform: translateY(-3px);
}

.nz-btn:hover span {
  transform: translate(3px, -3px);
}

.nz-btn--primary {
  color: var(--nz-white) !important;
  background: var(--nz-forest);
  border-color: var(--nz-forest);
  box-shadow: 0 16px 35px rgba(33, 59, 48, .2);
}

.nz-btn--primary:hover {
  background: var(--nz-forest-deep);
  border-color: var(--nz-forest-deep);
}

.nz-btn--ghost {
  color: var(--nz-ink) !important;
  border-color: var(--nz-border);
  background: rgba(255, 255, 255, .3);
}

.nz-btn--ghost:hover {
  border-color: var(--nz-ink);
  background: var(--nz-white);
}

.nz-btn--light {
  color: var(--nz-forest) !important;
  background: var(--nz-white);
  border-color: var(--nz-white);
}

.nz-btn--light:hover {
  background: var(--nz-sand);
  border-color: var(--nz-sand);
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity .9s cubic-bezier(.2, .7, .2, 1),
    transform .9s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.norka-home.nz-motion-ready .reveal {
  opacity: 0;
  transform: translateY(34px);
}

.norka-home.nz-motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* HERO */

.nz-hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  padding: clamp(130px, 12vw, 180px) 0 clamp(75px, 7vw, 110px);
  background:
    linear-gradient(110deg, rgba(247, 244, 236, 1) 0%, rgba(247, 244, 236, .97) 42%, rgba(233, 238, 233, .76) 100%);
  isolation: isolate;
}

.nz-hero::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nz-border), transparent);
}

.nz-hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.nz-hero__glow--one {
  top: 8%;
  left: -12%;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(181, 107, 63, .13), transparent 67%);
}

.nz-hero__glow--two {
  right: -11%;
  bottom: -21%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(95, 135, 111, .16), transparent 68%);
}

.nz-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(55px, 6vw, 100px);
}

.nz-hero__content {
  position: relative;
  z-index: 2;
}

.nz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 26px;
  color: var(--nz-ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.nz-eyebrow__dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--nz-accent);
}

.nz-eyebrow__dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(181, 107, 63, .32);
  border-radius: inherit;
  animation: nzPulse 2.4s ease-out infinite;
}

.nz-hero__title {
  max-width: 700px;
  color: var(--nz-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(58px, 6.1vw, 104px);
  font-weight: 600;
  line-height: .89;
  letter-spacing: -.06em;
}

.nz-hero__title span {
  display: block;
  color: var(--nz-accent);
  font-style: italic;
  font-weight: 600;
}

.nz-hero__lead {
  max-width: 620px;
  margin-top: 35px !important;
  color: var(--nz-ink-soft) !important;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.75;
}

.nz-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.nz-hero__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 640px;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--nz-border);
}

.nz-mini-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 24px;
}

.nz-mini-stat + .nz-mini-stat {
  padding-left: 24px;
  border-left: 1px solid var(--nz-border);
}

.nz-mini-stat strong {
  color: var(--nz-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.nz-mini-stat span {
  color: var(--nz-ink-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nz-hero__visual {
  position: relative;
  min-width: 0;
  transform-style: preserve-3d;
}

.nz-hero__image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  border-radius: 220px 30px 220px 30px;
  box-shadow: var(--nz-shadow);
  background: var(--nz-sage-soft);
}

.nz-hero__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 37, 30, .04), rgba(20, 37, 30, .22)),
    linear-gradient(120deg, rgba(255,255,255,.15), transparent 42%);
  pointer-events: none;
}

.nz-hero__image {
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.07) translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
  transition: transform .25s ease-out;
}

.nz-floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 19px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 17px;
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 20px 45px rgba(20, 37, 30, .16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nz-floating-card small,
.nz-floating-card strong {
  display: block;
}

.nz-floating-card small {
  margin-bottom: 3px;
  color: var(--nz-ink-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.nz-floating-card strong {
  color: var(--nz-ink);
  font-size: 13px;
}

.nz-floating-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--nz-forest);
}

.nz-floating-card__icon svg {
  width: 20px;
  fill: none;
  stroke: var(--nz-white);
  stroke-width: 1.8;
}

.nz-floating-card__pulse {
  position: relative;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #5e9b71;
}

.nz-floating-card__pulse::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(94, 155, 113, .48);
  border-radius: inherit;
  animation: nzPulse 2.2s ease-out infinite;
}

.nz-floating-card--location {
  top: 9%;
  left: -38px;
}

.nz-floating-card--view {
  right: -35px;
  bottom: 12%;
}

.nz-scroll-hint {
  position: absolute;
  right: calc(100% + 26px);
  bottom: 7px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--nz-ink-soft) !important;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: right bottom;
}

.nz-scroll-hint i {
  position: relative;
  width: 58px;
  height: 1px;
  overflow: hidden;
  background: var(--nz-border);
}

.nz-scroll-hint i::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--nz-ink);
  animation: nzLine 2.6s ease-in-out infinite;
}

/* APARTMENTS */

.nz-apartments {
  background: var(--nz-white);
}

.nz-apartments__grid {
  display: grid;
  grid-template-columns: minmax(460px, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(70px, 9vw, 150px);
}

.nz-apartments__visual {
  position: relative;
  min-height: 680px;
}

.nz-apartments__photo {
  overflow: hidden;
  background: var(--nz-sage-soft);
  box-shadow: 0 30px 75px rgba(20, 37, 30, .1);
}

.nz-apartments__photo--main {
  width: 83%;
  height: 620px;
  border-radius: 28px 150px 28px 28px;
}

.nz-apartments__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2, .7, .2, 1);
}

.nz-apartments__photo:hover img {
  transform: scale(1.035);
}

.nz-photo-caption {
  position: absolute;
  right: 0;
  bottom: 35px;
  display: flex;
  width: min(340px, 70%);
  gap: 16px;
  padding: 26px;
  border-radius: 22px;
  background: var(--nz-cream);
  box-shadow: 0 22px 55px rgba(20, 37, 30, .13);
}

.nz-photo-caption__line {
  flex: 0 0 3px;
  border-radius: 10px;
  background: var(--nz-accent);
}

.nz-photo-caption strong {
  display: block;
  margin-bottom: 7px;
  color: var(--nz-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
}

.nz-photo-caption p {
  font-size: 13px;
  line-height: 1.6;
}

.nz-apartments__stamp {
  position: absolute;
  top: 20px;
  right: 4px;
  display: flex;
  width: 128px;
  height: 128px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  border: 1px solid rgba(181, 107, 63, .35);
  border-radius: 50%;
  color: var(--nz-accent);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 13px;
  font-style: italic;
  transform: rotate(7deg);
}

.nz-apartments__stamp i {
  font-size: 8px;
}

.nz-check-list {
  display: grid;
  gap: 0;
  margin: 46px 0 42px;
  border-top: 1px solid var(--nz-border);
}

.nz-check-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 23px 0;
  border-bottom: 1px solid var(--nz-border);
}

.nz-check-item__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--nz-forest);
  background: var(--nz-sage-soft);
  font-size: 15px;
  font-weight: 700;
}

.nz-check-item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--nz-ink);
  font-size: 16px;
}

.nz-check-item p {
  font-size: 14px;
  line-height: 1.65;
}

/* AMENITIES */

.nz-amenities {
  padding: 0 0 clamp(90px, 9vw, 140px);
  background: var(--nz-white);
}

.nz-amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--nz-border);
  border-bottom: 1px solid var(--nz-border);
}

.nz-amenity {
  position: relative;
  min-height: 310px;
  padding: 44px 34px;
  transition: background-color .35s ease, transform .35s ease !important;
}

.nz-amenity + .nz-amenity {
  border-left: 1px solid var(--nz-border);
}

.nz-amenity:hover {
  z-index: 1;
  background: var(--nz-cream);
  transform: translateY(-8px);
}

.nz-amenity__number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(31, 41, 35, .35);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

.nz-amenity svg {
  width: 44px;
  height: 44px;
  margin-bottom: 54px;
  fill: none;
  stroke: var(--nz-accent);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nz-amenity h3 {
  margin-bottom: 13px;
  color: var(--nz-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
}

.nz-amenity p {
  font-size: 13px;
  line-height: 1.65;
}

/* PLACE */

.nz-place {
  overflow: hidden;
  background: var(--nz-forest-deep);
}

.nz-place::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -16%;
  width: 55vw;
  height: 55vw;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
}

.nz-place::after {
  content: "";
  position: absolute;
  right: -2%;
  bottom: -36%;
  width: 34vw;
  height: 34vw;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 50%;
}

.nz-place__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(460px, .93fr) minmax(0, 1.07fr);
  align-items: center;
  gap: clamp(70px, 9vw, 150px);
}

.nz-place__image {
  position: relative;
  overflow: hidden;
  height: 720px;
  border-radius: 180px 28px 28px 28px;
}

.nz-place__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(20, 37, 30, .63));
}

.nz-place__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2, .7, .2, 1);
}

.nz-place__image:hover img {
  transform: scale(1.04);
}

.nz-place__image-label {
  position: absolute;
  z-index: 1;
  right: 35px;
  bottom: 35px;
  left: 35px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--nz-white);
}

.nz-place__image-label small {
  max-width: 120px;
  opacity: .65;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.6;
  text-transform: uppercase;
}

.nz-place__image-label strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 66px;
  font-weight: 600;
  line-height: 1;
}

.nz-place__quote {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  max-width: 660px;
  margin: 48px 0 42px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.nz-place__quote span {
  color: var(--nz-accent);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 68px;
  line-height: .75;
}

.nz-place__quote p {
  color: rgba(255, 255, 255, .76);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(20px, 1.8vw, 28px);
  font-style: italic;
  line-height: 1.5;
}

/* STORY */

.nz-story {
  background: var(--nz-cream);
}

.nz-story__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--nz-border);
}

.nz-story__heading h2 {
  max-width: 860px;
  color: var(--nz-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 6vw, 90px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.05em;
}

.nz-story__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(70px, 10vw, 170px);
  padding-top: 60px;
}

.nz-story__lead {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 26px;
}

.nz-story__index {
  padding-top: 7px;
  color: var(--nz-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
}

.nz-story__lead p {
  color: var(--nz-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.48;
}

.nz-story__text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.nz-story__text p {
  font-size: 15px;
  line-height: 1.9;
}

/* ATTRACTIONS */

.nz-attractions {
  background: var(--nz-sage-soft);
}

.nz-attractions__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 58px;
}

.nz-attractions__top > p {
  max-width: 430px;
  padding-bottom: 8px;
  font-size: 15px;
  line-height: 1.8;
}

.nz-attractions .owl-carousel .owl-stage {
  display: flex;
}

.nz-attractions .owl-carousel .owl-stage-outer {
  overflow: visible;
  transform: none;
}

.nz-attractions .owl-carousel .owl-item {
  display: flex;
}

.nz-attractions .owl-carousel .item {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nz-attraction-card {
  overflow: hidden;
  border-radius: 26px;
  background: var(--nz-white) !important;
  transition: transform .4s ease, box-shadow .4s ease;
}

.nz-attraction-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 55px rgba(20, 37, 30, .13);
}

.nz-attraction-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.nz-attraction-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(20, 37, 30, .33));
}

.nz-attraction-card__image img {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.nz-attraction-card:hover .nz-attraction-card__image img {
  transform: scale(1.06);
}

.nz-attraction-card__image span {
  position: absolute;
  z-index: 1;
  top: 18px;
  right: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--nz-white);
  background: rgba(20, 37, 30, .55);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}

.nz-attraction-card__body {
  min-height: 190px;
  padding: 27px 27px 30px;
}

.nz-attraction-card__body h3 {
  margin-bottom: 14px;
  color: var(--nz-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
}

.nz-attraction-card__body p {
  font-size: 13px;
  line-height: 1.7;
  text-align: left;
}

.nz-attractions .owl-nav {
  position: static;
  display: flex !important;
  width: auto;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 36px;
  transform: none;
}

.nz-attractions .owl-nav button.owl-prev,
.nz-attractions .owl-nav button.owl-next {
  display: grid !important;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--nz-border) !important;
  border-radius: 50% !important;
  color: var(--nz-ink) !important;
  background: rgba(255, 255, 255, .45) !important;
  transition: background-color .3s ease, color .3s ease, transform .3s ease;
}

.nz-attractions .owl-nav button:hover {
  color: var(--nz-white) !important;
  background: var(--nz-forest) !important;
  transform: translateY(-2px);
}

.nz-attractions .owl-nav button span {
  padding: 0 !important;
  font-size: 31px !important;
  line-height: 1 !important;
}

/* FAQ */

.nz-faq {
  background: var(--nz-white);
}

.nz-faq__grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: start;
  gap: clamp(70px, 10vw, 170px);
}

.nz-faq__intro {
  position: sticky;
  top: 140px;
}

.nz-faq__contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--nz-border);
}

.nz-faq__contact span {
  color: var(--nz-ink-soft);
  font-size: 12px;
}

.nz-faq__contact strong {
  color: var(--nz-ink);
  font-size: 14px;
}

.nz-faq__items {
  border-top: 1px solid var(--nz-border);
}

.nz-faq details {
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--nz-border);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: none;
}

.nz-faq details + details {
  margin-top: 0;
}

.nz-faq details[open] {
  min-height: 0;
  background: transparent;
  box-shadow: none;
}

.nz-faq summary {
  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 24px;
  padding: 30px 0;
  color: var(--nz-ink);
  font-family: "Manrope", sans-serif;
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.nz-faq summary::-webkit-details-marker {
  display: none;
}

.nz-faq summary i {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--nz-border);
  border-radius: 50%;
  transition: background-color .3s ease, border-color .3s ease, transform .35s ease;
}

.nz-faq summary i::before,
.nz-faq summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--nz-ink);
  transform: translate(-50%, -50%);
  transition: transform .35s ease, background-color .3s ease;
}

.nz-faq summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.nz-faq details[open] summary i {
  border-color: var(--nz-forest);
  background: var(--nz-forest);
  transform: rotate(180deg);
}

.nz-faq details[open] summary i::before,
.nz-faq details[open] summary i::after {
  background: var(--nz-white);
}

.nz-faq details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.nz-faq__answer {
  overflow: hidden;
}

.nz-faq details p {
  max-width: 700px;
  margin: 0 0 30px;
  padding-right: 58px;
  color: var(--nz-ink-soft);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  text-align: left;
}

/* FINAL CTA */

.nz-final-cta {
  position: relative;
  display: flex;
  min-height: 720px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.nz-final-cta__background,
.nz-final-cta__background img,
.nz-final-cta__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nz-final-cta__background {
  z-index: -2;
}

.nz-final-cta__background img {
  object-fit: cover;
  object-position: center 55%;
  transform: scale(1.04);
}

.nz-final-cta__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(20, 37, 30, .9) 0%, rgba(20, 37, 30, .7) 48%, rgba(20, 37, 30, .25) 100%),
    linear-gradient(180deg, rgba(20, 37, 30, .1), rgba(20, 37, 30, .45));
}

.nz-final-cta__content {
  color: var(--nz-white);
}

.nz-final-cta__content .nz-kicker {
  color: #d9bda8;
}

.nz-final-cta__content h2 {
  max-width: 820px;
  color: var(--nz-white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(58px, 7vw, 108px);
  font-weight: 600;
  line-height: .9;
  letter-spacing: -.055em;
}

.nz-final-cta__content p {
  max-width: 550px;
  margin: 30px 0 36px;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
  line-height: 1.75;
}

/* ANIMATIONS */

@keyframes nzPulse {
  0% {
    opacity: .8;
    transform: scale(.6);
  }
  80%,
  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}

@keyframes nzLine {
  0% {
    left: -100%;
  }
  55%,
  100% {
    left: 100%;
  }
}

/* RESPONSIVE */

@media (max-width: 1280px) {
  .nz-shell {
    width: min(calc(100% - 56px), var(--nz-shell));
  }

  .nz-hero__grid {
    grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
    gap: 50px;
  }

  .nz-hero__image-wrap,
  .nz-hero__image {
    min-height: 610px;
  }

  .nz-floating-card--location {
    left: -20px;
  }

  .nz-floating-card--view {
    right: -10px;
  }

  .nz-scroll-hint {
    display: none;
  }

  .nz-apartments__grid,
  .nz-place__grid {
    gap: 70px;
  }
}

@media (max-width: 1050px) {
  body.home .navbar,
  body .navbar {
    min-height: 80px;
    padding-inline: 22px;
  }

  .nz-hero {
    min-height: auto;
    padding-top: 145px;
  }

  .nz-hero__grid {
    grid-template-columns: 1fr;
  }

  .nz-hero__content {
    max-width: 800px;
  }

  .nz-hero__visual {
    max-width: 850px;
    margin-left: auto;
  }

  .nz-hero__image-wrap {
    min-height: 620px;
    border-radius: 150px 28px 150px 28px;
  }

  .nz-hero__image {
    min-height: 620px;
  }

  .nz-apartments__grid,
  .nz-place__grid,
  .nz-faq__grid {
    grid-template-columns: 1fr;
  }

  .nz-apartments__visual {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .nz-apartments__content {
    max-width: 760px;
  }

  .nz-amenities__grid {
    grid-template-columns: 1fr 1fr;
  }

  .nz-amenity:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--nz-border);
  }

  .nz-amenity:nth-child(4) {
    border-top: 1px solid var(--nz-border);
  }

  .nz-place__image {
    width: min(100%, 760px);
    height: 660px;
  }

  .nz-place__content {
    max-width: 780px;
  }

  .nz-story__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .nz-faq__intro {
    position: static;
  }

  .nz-faq__contact {
    max-width: 500px;
  }
}

@media (max-width: 860px) {
  body.home #toggle-menu-icon::before,
  body #toggle-menu-icon::before {
    background: var(--nz-ink);
    box-shadow: 0 10px 0 var(--nz-ink);
  }

  body.home #toggle-menu-icon::after,
  body #toggle-menu-icon::after {
    background: var(--nz-ink);
  }

  body.home #toggle-menu-icon.active-menu::before,
  body #toggle-menu-icon.active-menu::before {
    box-shadow: 0 0 0 var(--nz-ink);
  }

  body.home #rMenu,
  body #rMenu {
    background: var(--nz-forest-deep);
  }

  .nz-attractions__top {
    display: block;
  }

  .nz-attractions__top > p {
    margin-top: 24px;
  }

  .nz-story__heading {
    display: block;
  }

  .nz-story__heading .nz-kicker {
    margin-bottom: 18px;
  }

  .nz-story__text {
    gap: 24px;
  }
}

@media (max-width: 700px) {
  .nz-shell {
    width: min(calc(100% - 36px), var(--nz-shell));
  }

  .nz-section {
    padding: 86px 0;
  }

  .nz-hero {
    padding: 122px 0 74px;
  }

  .nz-hero__title {
    font-size: clamp(53px, 15vw, 78px);
  }

  .nz-hero__lead {
    margin-top: 26px !important;
    font-size: 16px;
  }

  .nz-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .nz-btn {
    width: 100%;
  }

  .nz-hero__benefits {
    grid-template-columns: 1fr 1fr;
    row-gap: 24px;
  }

  .nz-mini-stat:nth-child(3) {
    grid-column: 1 / -1;
    padding-top: 22px;
    padding-left: 0;
    border-top: 1px solid var(--nz-border);
    border-left: 0;
  }

  .nz-hero__image-wrap {
    min-height: 500px;
    border-radius: 100px 22px 100px 22px;
  }

  .nz-hero__image {
    min-height: 500px;
  }

  .nz-floating-card--location {
    top: 18px;
    left: 18px;
  }

  .nz-floating-card--view {
    right: 18px;
    bottom: 18px;
  }

  .nz-apartments__visual {
    min-height: 560px;
  }

  .nz-apartments__photo--main {
    width: 91%;
    height: 520px;
    border-radius: 22px 100px 22px 22px;
  }

  .nz-photo-caption {
    right: 0;
    bottom: 0;
  }

  .nz-apartments__stamp {
    display: none;
  }

  .nz-amenities__grid {
    grid-template-columns: 1fr;
  }

  .nz-amenity {
    min-height: 240px;
  }

  .nz-amenity + .nz-amenity {
    border-top: 1px solid var(--nz-border);
    border-left: 0;
  }

  .nz-amenity svg {
    margin-bottom: 32px;
  }

  .nz-place__image {
    height: 560px;
    border-radius: 100px 22px 22px 22px;
  }

  .nz-place__image-label strong {
    font-size: 52px;
  }

  .nz-place__quote {
    grid-template-columns: 35px 1fr;
  }

  .nz-story__heading {
    padding-bottom: 40px;
  }

  .nz-story__grid {
    padding-top: 40px;
  }

  .nz-story__lead {
    grid-template-columns: 34px 1fr;
    gap: 14px;
  }

  .nz-story__text {
    grid-template-columns: 1fr;
  }

  .nz-attractions .owl-stage-outer {
    overflow: hidden !important;
  }

  .nz-faq summary {
    padding: 25px 0;
  }

  .nz-faq details p {
    padding-right: 0;
  }

  .nz-final-cta {
    min-height: 650px;
  }
}

@media (max-width: 480px) {
  body.home .navbar__logo img,
  body .navbar__logo img {
    height: 62px;
  }

  .nz-shell {
    width: min(calc(100% - 28px), var(--nz-shell));
  }

  .nz-section-heading h2 {
    font-size: 42px;
  }

  .nz-hero__benefits {
    grid-template-columns: 1fr;
  }

  .nz-mini-stat,
  .nz-mini-stat + .nz-mini-stat,
  .nz-mini-stat:nth-child(3) {
    grid-column: auto;
    padding: 0 0 20px;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--nz-border);
    border-left: 0;
  }

  .nz-hero__image-wrap,
  .nz-hero__image {
    min-height: 430px;
  }

  .nz-floating-card {
    padding: 12px 14px;
  }

  .nz-floating-card__icon {
    width: 34px;
    height: 34px;
  }

  .nz-floating-card--location {
    top: 12px;
    left: 12px;
  }

  .nz-floating-card--view {
    right: 12px;
    bottom: 12px;
  }

  .nz-floating-card small {
    font-size: 8px;
  }

  .nz-floating-card strong {
    font-size: 11px;
  }

  .nz-apartments__visual {
    min-height: 510px;
  }

  .nz-apartments__photo--main {
    height: 460px;
  }

  .nz-photo-caption {
    width: 88%;
    padding: 20px;
  }

  .nz-photo-caption strong {
    font-size: 21px;
  }

  .nz-check-item {
    grid-template-columns: 40px 1fr;
    gap: 15px;
  }

  .nz-check-item__icon {
    width: 36px;
    height: 36px;
  }

  .nz-place__image {
    height: 480px;
  }

  .nz-place__image-label {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .nz-place__image-label strong {
    font-size: 44px;
  }

  .nz-final-cta__content h2 {
    font-size: 54px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .nz-eyebrow__dot::after,
  .nz-floating-card__pulse::after,
  .nz-scroll-hint i::after {
    animation: none;
  }

  .nz-hero__image,
  .nz-apartments__photo img,
  .nz-place__image img,
  .nz-attraction-card__image img {
    transition: none;
  }
}

/* =========================================================
   V3: HERO MOTION, PREMIUM HEADER, LOCATION & FOOTER
   ========================================================= */

body.home header,
body header {
  top: 0;
  right: 0;
  left: 0;
  width: 100% !important;
  padding-top: 0 !important;
  background: rgba(247, 244, 236, .78) !important;
  border-bottom: 1px solid rgba(31, 41, 35, .08);
  box-shadow: none;
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  transform: translateY(0);
  transition: background-color .4s ease, border-color .4s ease, box-shadow .4s ease, transform .4s ease;
}

body.home header.is-scrolled,
body header.is-scrolled {
  background: rgba(20, 37, 30, .92) !important;
  border-color: rgba(255, 255, 255, .09);
  box-shadow: 0 18px 55px rgba(20, 37, 30, .22);
}

body.home header.is-hidden,
body header.is-hidden {
  transform: translateY(-105%);
}

body.home .navbar,
body .navbar {
  width: min(calc(100% - 56px), var(--nz-shell));
  min-height: 88px;
  margin-inline: auto;
  padding: 0 !important;
}

body.home .navbar__logo,
body .navbar__logo {
  position: relative;
  height: 88px !important;
  padding: 8px 0 !important;
}

body.home .navbar__logo::after,
body .navbar__logo::after {
  content: "";
  position: absolute;
  right: -28px;
  width: 1px;
  height: 28px;
  background: rgba(31, 41, 35, .12);
  transition: background-color .35s ease;
}

body.home header.is-scrolled .navbar__logo::after,
body header.is-scrolled .navbar__logo::after {
  background: rgba(255, 255, 255, .15);
}

body.home .navbar__logo img,
body .navbar__logo img {
  height: 70px !important;
  max-width: 190px;
  object-fit: contain;
  filter: none !important;
  transition: filter .35s ease, transform .35s ease;
}

body.home .navbar__logo:hover img,
body .navbar__logo:hover img {
  transform: translateY(-2px);
}

body.home header.is-scrolled .navbar__logo img,
body header.is-scrolled .navbar__logo img {
  filter: brightness(0) invert(1) !important;
}

body.home .navbar__links,
body .navbar__links {
  gap: 4px !important;
  padding: 0 !important;
}

body.home .navbar__link a,
body .navbar__link a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 15px !important;
  border: 0 !important;
  border-radius: 999px;
  color: var(--nz-ink) !important;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: .09em !important;
  transition: color .3s ease, background-color .3s ease, transform .3s ease;
}

body.home .navbar__link a::after,
body .navbar__link a::after {
  display: none;
}

body.home .navbar__link a:hover,
body .navbar__link a:hover,
body.home .navbar__link a.is-active,
body .navbar__link a.is-active {
  color: var(--nz-forest) !important;
  background: rgba(33, 59, 48, .09);
  transform: translateY(-1px);
}

body.home header.is-scrolled .navbar__link a,
body header.is-scrolled .navbar__link a {
  color: rgba(255, 255, 255, .78) !important;
}

body.home header.is-scrolled .navbar__link a:hover,
body header.is-scrolled .navbar__link a:hover,
body.home header.is-scrolled .navbar__link a.is-active,
body header.is-scrolled .navbar__link a.is-active {
  color: var(--nz-white) !important;
  background: rgba(255, 255, 255, .11);
}

body.home .navbar__link:last-child a,
body .navbar__link:last-child a {
  margin-left: 8px;
  padding-inline: 20px !important;
  color: var(--nz-white) !important;
  background: var(--nz-accent);
  box-shadow: 0 10px 25px rgba(181, 107, 63, .2);
}

body.home .navbar__link:last-child a:hover,
body .navbar__link:last-child a:hover {
  color: var(--nz-white) !important;
  background: var(--nz-accent-dark);
}

body.home.nz-header-intro header .navbar__logo,
body.home.nz-header-intro header .navbar__link,
body.home.nz-header-intro header .navbar__hamburger,
body.page-template-page-home-premium.nz-header-intro header .navbar__logo,
body.page-template-page-home-premium.nz-header-intro header .navbar__link,
body.page-template-page-home-premium.nz-header-intro header .navbar__hamburger {
  animation: nzHeaderIntro .75s cubic-bezier(.2, .75, .2, 1) both;
}

body.home.nz-header-intro header .navbar__link:nth-child(1),
body.page-template-page-home-premium.nz-header-intro header .navbar__link:nth-child(1) { animation-delay: .08s; }
body.home.nz-header-intro header .navbar__link:nth-child(2),
body.page-template-page-home-premium.nz-header-intro header .navbar__link:nth-child(2) { animation-delay: .13s; }
body.home.nz-header-intro header .navbar__link:nth-child(3),
body.page-template-page-home-premium.nz-header-intro header .navbar__link:nth-child(3) { animation-delay: .18s; }
body.home.nz-header-intro header .navbar__link:nth-child(4),
body.page-template-page-home-premium.nz-header-intro header .navbar__link:nth-child(4) { animation-delay: .23s; }
body.home.nz-header-intro header .navbar__link:nth-child(5),
body.page-template-page-home-premium.nz-header-intro header .navbar__link:nth-child(5) { animation-delay: .28s; }
body.home.nz-header-intro header .navbar__link:nth-child(6),
body.page-template-page-home-premium.nz-header-intro header .navbar__link:nth-child(6) { animation-delay: .33s; }

.nz-hero__title-static {
  display: block;
  color: var(--nz-ink);
  font-style: normal !important;
}

.nz-hero__typed-line {
  display: flex !important;
  min-height: 1.05em;
  align-items: baseline;
  color: var(--nz-accent) !important;
  font-style: italic !important;
  white-space: nowrap;
}

.nz-hero__typed-text {
  display: inline !important;
  color: inherit !important;
  font: inherit;
}

.nz-hero__typing-caret {
  display: inline-block;
  width: .045em;
  height: .78em;
  margin-left: .08em;
  border-radius: 4px;
  background: currentColor;
  transform: translateY(.02em);
  animation: nzCaretBlink .85s step-end infinite;
}

.nz-hero__signature {
  display: flex;
  max-width: 300px;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  color: var(--nz-ink-soft);
}

.nz-hero__signature > span {
  position: relative;
  width: 62px;
  height: 1px;
  overflow: hidden;
  background: var(--nz-border);
}

.nz-hero__signature > span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--nz-accent);
  transform: translateX(-100%);
  animation: nzSignatureLine 3.5s ease-in-out infinite;
}

.nz-hero__signature small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nz-hero__visual { isolation: isolate; }

.nz-hero__image-wrap {
  clip-path: inset(0 0 0 0 round 220px 30px 220px 30px);
}

.nz-hero__image-veil {
  position: absolute;
  z-index: 3;
  inset: 0;
  background: var(--nz-forest);
  pointer-events: none;
  transform-origin: right center;
}

.nz-motion-ready .nz-hero__visual.is-visible .nz-hero__image-veil {
  animation: nzImageVeil 1.25s .15s cubic-bezier(.75, 0, .2, 1) forwards;
}

.nz-motion-ready .nz-hero__visual.is-visible .nz-hero__image {
  animation: nzHeroImageIntro 1.8s .15s cubic-bezier(.2, .75, .2, 1) both;
}

.nz-hero__orbit {
  position: absolute;
  z-index: -1;
  top: -44px;
  right: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(181, 107, 63, .22);
  border-radius: 50%;
  animation: nzOrbitRotate 18s linear infinite;
}

.nz-hero__orbit::before,
.nz-hero__orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(33, 59, 48, .1);
  border-radius: 50%;
}

.nz-hero__orbit::before { inset: 22px; }
.nz-hero__orbit::after { inset: 53px; }

.nz-hero__orbit span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--nz-accent);
  box-shadow: 0 0 0 7px rgba(181, 107, 63, .1);
}

.nz-hero__orbit span:nth-child(1) { top: 10px; left: 88px; }
.nz-hero__orbit span:nth-child(2) { right: 15px; bottom: 35px; width: 6px; height: 6px; background: var(--nz-forest); }
.nz-hero__orbit span:nth-child(3) { bottom: 20px; left: 31px; width: 5px; height: 5px; background: var(--nz-sage); }

.nz-floating-card--location { animation: nzFloatCardOne 5.8s ease-in-out infinite; }
.nz-floating-card--view { animation: nzFloatCardTwo 6.4s ease-in-out infinite; }
.nz-hero__glow--one { animation: nzGlowOne 9s ease-in-out infinite alternate; }
.nz-hero__glow--two { animation: nzGlowTwo 11s ease-in-out infinite alternate; }

.localization {
  position: relative;
  display: grid !important;
  grid-template-columns: minmax(380px, .72fr) minmax(0, 1.28fr);
  width: min(calc(100% - 80px), var(--nz-shell));
  min-height: 590px;
  margin: clamp(90px, 9vw, 150px) auto;
  overflow: hidden;
  border-radius: 34px;
  background: var(--nz-forest-deep);
  box-shadow: 0 35px 90px rgba(20, 37, 30, .16) !important;
}

.localization::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -160px;
  left: -160px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.localization::after {
  content: "49.3254° N · 19.9516° E";
  position: absolute;
  z-index: 2;
  bottom: 25px;
  left: 38px;
  color: rgba(255, 255, 255, .34);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

.localization__container {
  position: relative;
  z-index: 1;
  display: flex !important;
  align-items: stretch;
  background: transparent !important;
}

.localization__info {
  width: 100% !important;
  justify-content: space-between !important;
  gap: 60px !important;
  padding: clamp(50px, 6vw, 88px) clamp(36px, 5vw, 72px) 72px !important;
}

.localization__info-header { gap: 24px !important; }

.localization__info-header .h3Size {
  position: relative;
  color: var(--nz-white) !important;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 4vw, 66px) !important;
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.04em;
}

.localization__info-header .h3Size::before {
  content: "Lokalizacja";
  display: block;
  margin-bottom: 18px;
  color: #d9bda8;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.localization__info-header .p2Size {
  max-width: 390px;
  color: rgba(255, 255, 255, .67) !important;
  font-size: 15px !important;
  line-height: 1.8;
}

.localization__info-btns { width: 100% !important; gap: 12px !important; }

.localization__info-btns .btn {
  display: inline-flex;
  width: 100%;
  min-width: 0;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  transition: transform .3s ease, background-color .3s ease, border-color .3s ease, color .3s ease;
}

.localization__info-btns .btn:hover { transform: translateY(-3px); }
.localization__info-btns .btn-primary { color: var(--nz-forest) !important; border-color: var(--nz-white) !important; background: var(--nz-white) !important; }
.localization__info-btns .btn-primary:hover { color: var(--nz-forest) !important; border-color: var(--nz-sand) !important; background: var(--nz-sand) !important; }
.localization__info-btns .btn-blue { color: var(--nz-white) !important; border-color: rgba(255, 255, 255, .22) !important; background: transparent !important; }
.localization__info-btns .btn-blue:hover { border-color: rgba(255, 255, 255, .5) !important; background: rgba(255, 255, 255, .08) !important; }

.localization__content {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 590px;
  overflow: hidden;
  background: var(--nz-sage-soft);
}

.localization__content::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 10px solid var(--nz-forest-deep);
  border-left-width: 0;
  border-radius: 0 34px 34px 0;
  pointer-events: none;
}

.localization__content iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 590px;
  border: 0 !important;
  filter: saturate(.72) contrast(.95);
  transition: filter .6s ease, transform .7s ease;
}

.localization:hover .localization__content iframe { filter: saturate(1) contrast(1); transform: scale(1.008); }

.footer {
  position: relative;
  overflow: hidden;
  color: var(--nz-white) !important;
  background: radial-gradient(circle at 85% 15%, rgba(169, 188, 174, .12), transparent 26%), var(--nz-forest-deep) !important;
  font-family: "Manrope", sans-serif;
}

.footer::before,
.footer::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 50%;
}

.footer::before { top: -310px; right: -190px; width: 630px; height: 630px; }
.footer::after { top: -180px; right: -60px; width: 360px; height: 360px; opacity: .65; }

.footer__content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 80px), var(--nz-shell));
  margin-inline: auto;
  padding: clamp(80px, 8vw, 120px) 0 28px !important;
}

.footer__tiles {
  display: grid !important;
  grid-template-columns: 1.15fr 1.35fr .95fr .85fr .65fr;
  align-items: start;
  gap: clamp(34px, 4vw, 70px) !important;
  padding-bottom: 70px;
}

.footer__tiles > * { display: block; min-width: 0; }
.footer__logo { max-width: 230px !important; }
.footer__logo img { width: min(100%, 205px) !important; filter: brightness(0) invert(1); opacity: .94; }

.footer h1,
.footer h2,
.footer .h5Size {
  position: relative;
  margin: 0 0 26px;
  padding-bottom: 15px;
  color: var(--nz-white) !important;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px !important;
  font-weight: 600;
  letter-spacing: -.02em;
}

.footer h1::after,
.footer h2::after,
.footer .h5Size::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 1px;
  background: var(--nz-accent);
}

.footer a,
.footer p {
  color: rgba(255, 255, 255, .62) !important;
  font-size: 13px;
  line-height: 1.75 !important;
}

.footer a { position: relative; width: fit-content; transition: color .3s ease, transform .3s ease; }
.footer a:hover { color: var(--nz-white) !important; transform: translateX(4px); }
.footer__contact-infos { display: grid; gap: 16px; margin-top: 0 !important; }
.footer__icons { display: grid !important; grid-template-columns: 30px 1fr; align-items: center !important; gap: 11px !important; }
.footer__icons img { width: 18px; height: 18px; margin: 0 !important; object-fit: contain; filter: brightness(0) invert(1); opacity: .72; }
.footer__infos-links,
.footer__handy-links { gap: 7px !important; margin-top: 0 !important; }
.footer__infos-hours { gap: 3px !important; margin-top: 28px !important; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .09); }
.footer__infos-hours .bold { color: rgba(255, 255, 255, .92) !important; font-weight: 700; }
.footer__socials { width: auto !important; }
.footer__socials-links { justify-content: flex-start !important; gap: 9px !important; margin-top: 0 !important; }
.footer__socials-links img { width: 42px; height: 42px; padding: 12px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 50%; filter: brightness(0) invert(1); opacity: .75; transition: transform .3s ease, background-color .3s ease, border-color .3s ease, opacity .3s ease; }
.footer__socials-links img:hover { border-color: var(--nz-accent); background: var(--nz-accent); opacity: 1; transform: translateY(-4px) rotate(4deg); }
.footer__credits { position: relative; margin: 0 !important; padding: 26px 0 0; border-top: 1px solid rgba(255, 255, 255, .09); color: rgba(255, 255, 255, .38) !important; font-size: 10px !important; letter-spacing: .11em; text-transform: uppercase; }
.footer__credits::after { content: "Made with care in the mountains"; position: absolute; right: 0; color: rgba(255, 255, 255, .27); }

.localization.nz-entered .localization__container,
.localization.nz-entered .localization__content { animation: nzExternalReveal .95s cubic-bezier(.2, .75, .2, 1) both; }
.localization.nz-entered .localization__content { animation-delay: .12s; }
.footer.nz-entered .footer__tiles > * { animation: nzExternalReveal .8s cubic-bezier(.2, .75, .2, 1) both; }
.footer.nz-entered .footer__tiles > *:nth-child(2) { animation-delay: .07s; }
.footer.nz-entered .footer__tiles > *:nth-child(3) { animation-delay: .14s; }
.footer.nz-entered .footer__tiles > *:nth-child(4) { animation-delay: .21s; }
.footer.nz-entered .footer__tiles > *:nth-child(5) { animation-delay: .28s; }

@keyframes nzHeaderIntro { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes nzCaretBlink { 0%, 45% { opacity: 1; } 46%, 100% { opacity: 0; } }
@keyframes nzSignatureLine { 0%, 12% { transform: translateX(-100%); } 45%, 62% { transform: translateX(0); } 100% { transform: translateX(100%); } }
@keyframes nzImageVeil { from { transform: scaleX(1); } to { transform: scaleX(0); } }
@keyframes nzHeroImageIntro { from { opacity: .75; transform: scale(1.18) translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0); } to { opacity: 1; transform: scale(1.07) translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0); } }
@keyframes nzOrbitRotate { to { transform: rotate(360deg); } }
@keyframes nzFloatCardOne { 0%, 100% { transform: translate3d(0, 0, 0) rotate(-.3deg); } 50% { transform: translate3d(0, -10px, 0) rotate(.4deg); } }
@keyframes nzFloatCardTwo { 0%, 100% { transform: translate3d(0, 0, 0) rotate(.3deg); } 50% { transform: translate3d(0, 9px, 0) rotate(-.5deg); } }
@keyframes nzGlowOne { from { transform: translate3d(-2%, -2%, 0) scale(.96); } to { transform: translate3d(5%, 4%, 0) scale(1.06); } }
@keyframes nzGlowTwo { from { transform: translate3d(3%, 2%, 0) scale(1); } to { transform: translate3d(-4%, -5%, 0) scale(1.08); } }
@keyframes nzExternalReveal { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1200px) {
  .footer__tiles { grid-template-columns: 1fr 1.2fr 1fr 1fr; }
  .footer__socials { grid-column: 2 / -1; }
}

@media (max-width: 1050px) {
  body.home .navbar,
  body .navbar { width: min(calc(100% - 36px), var(--nz-shell)); }
  .localization { width: min(calc(100% - 56px), var(--nz-shell)); grid-template-columns: 1fr; }
  .localization__info { min-height: 480px; }
  .localization__content,
  .localization__content iframe { min-height: 480px; }
  .localization__content::after { border-top-width: 0; border-left-width: 10px; border-radius: 0 0 34px 34px; }
}

@media (max-width: 860px) {
  body.home header,
  body.home header.is-scrolled,
  body header,
  body header.is-scrolled { background: rgba(20, 37, 30, .92) !important; }
  body.home .navbar,
  body .navbar { min-height: 76px; }
  body.home .navbar__logo,
  body .navbar__logo { height: 76px !important; }
  body.home .navbar__logo img,
  body .navbar__logo img { height: 61px !important; filter: brightness(0) invert(1) !important; }
  body.home #toggle-menu-icon::before,
  body #toggle-menu-icon::before { background: var(--nz-white) !important; box-shadow: 0 10px 0 var(--nz-white) !important; }
  body.home #toggle-menu-icon::after,
  body #toggle-menu-icon::after { background: var(--nz-white) !important; }
  body.home #rMenu,
  body #rMenu { background: radial-gradient(circle at 85% 15%, rgba(181, 107, 63, .18), transparent 25%), var(--nz-forest-deep) !important; }
  body.home #rMenu a,
  body #rMenu a { font-family: "Playfair Display", Georgia, serif; font-size: clamp(28px, 7vw, 44px) !important; font-weight: 600; letter-spacing: -.02em !important; text-transform: none !important; }
  .footer__tiles { grid-template-columns: 1fr 1fr; }
  .footer__logo { grid-column: 1 / -1; }
  .footer__socials { grid-column: auto; }
}

@media (max-width: 700px) {
  .nz-hero__typed-line { white-space: normal; }
  .nz-hero__orbit { top: -28px; right: -28px; width: 130px; height: 130px; }
  .nz-hero__image-wrap { clip-path: inset(0 0 0 0 round 100px 22px 100px 22px); }
  .localization { width: min(calc(100% - 28px), var(--nz-shell)); margin: 82px auto; border-radius: 24px; }
  .localization__info { min-height: 440px; padding: 54px 28px 64px !important; }
  .localization__content,
  .localization__content iframe { min-height: 430px; }
  .localization__content::after { border-width: 8px; border-top-width: 0; border-radius: 0 0 24px 24px; }
  .footer__content { width: min(calc(100% - 36px), var(--nz-shell)); }
  .footer__tiles { grid-template-columns: 1fr; gap: 42px !important; }
  .footer__logo,
  .footer__socials { grid-column: auto; }
  .footer__credits { padding-right: 0; line-height: 1.7 !important; }
  .footer__credits::after { position: static; display: block; margin-top: 8px; }
}

@media (max-width: 480px) {
  body.home .navbar,
  body .navbar { width: min(calc(100% - 24px), var(--nz-shell)); }
  .localization__info-header .h3Size { font-size: 43px !important; }
  .footer__content { width: min(calc(100% - 28px), var(--nz-shell)); }
}

@media (prefers-reduced-motion: reduce) {
  .nz-hero__typing-caret,
  .nz-hero__signature > span::after,
  .nz-hero__image-veil,
  .nz-hero__image,
  .nz-hero__orbit,
  .nz-floating-card--location,
  .nz-floating-card--view,
  .nz-hero__glow--one,
  .nz-hero__glow--two,
  .localization.nz-entered .localization__container,
  .localization.nz-entered .localization__content,
  .footer.nz-entered .footer__tiles > * { animation: none !important; }
  .nz-hero__image-veil { display: none; }
}

/* Zabezpieczenie: bez JavaScriptu zdjęcie hero zawsze pozostaje widoczne. */
.nz-hero__image-veil {
  transform: scaleX(0);
}

.nz-motion-ready .nz-hero__image-veil {
  transform: scaleX(1);
}

/* =========================================================
   V4: ROBUST HERO TYPEWRITER + LARGER NAVIGATION + SINGLE MOBILE X
   ========================================================= */

.norka-home .nz-hero__title {
  display: block !important;
  width: 100% !important;
  max-width: 780px !important;
  min-height: 1.82em;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  color: var(--nz-ink) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(60px, 6.15vw, 106px) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-variant-ligatures: none;
  line-height: .92 !important;
  letter-spacing: -.055em !important;
  text-align: left !important;
  text-indent: 0 !important;
  text-transform: none !important;
  writing-mode: horizontal-tb !important;
}

.norka-home .nz-hero__title-static,
.norka-home .nz-hero__typed-line,
.norka-home .nz-hero__typed-text {
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  text-indent: 0 !important;
  text-transform: none !important;
  writing-mode: horizontal-tb !important;
}

.norka-home .nz-hero__title-static {
  display: block !important;
  width: 100% !important;
  color: var(--nz-ink) !important;
  font-style: normal !important;
  white-space: nowrap;
}

.norka-home .nz-hero__typed-line {
  display: flex !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 1em;
  align-items: baseline;
  overflow: visible !important;
  color: var(--nz-accent) !important;
  font-style: italic !important;
  white-space: nowrap;
}

.norka-home .nz-hero__typed-text {
  display: inline-block !important;
  min-width: .35em;
  color: inherit !important;
  font-style: inherit !important;
}

.norka-home .nz-hero__typing-caret {
  display: inline-block !important;
  flex: 0 0 auto;
  width: .045em !important;
  height: .76em !important;
  margin-left: .09em !important;
  border: 0 !important;
  border-radius: 99px;
  background: currentColor !important;
  box-shadow: none !important;
  transform: translateY(.035em);
  animation: nzCaretBlink .8s step-end infinite !important;
}

/* Hero entrance is pure CSS, so it also works when another script on the site fails. */
.nz-hero .nz-eyebrow {
  animation: nzHeroTextIn .7s cubic-bezier(.2,.75,.2,1) both .08s;
}

.nz-hero .nz-hero__title-static {
  animation: nzHeroTitleIn .9s cubic-bezier(.18,.8,.2,1) both .18s;
}

.nz-hero .nz-hero__typed-line {
  animation: nzHeroTitleIn .9s cubic-bezier(.18,.8,.2,1) both .31s;
}

.nz-hero .nz-hero__signature {
  animation: nzHeroTextIn .75s cubic-bezier(.2,.75,.2,1) both .48s;
}

.nz-hero .nz-hero__lead {
  animation: nzHeroTextIn .8s cubic-bezier(.2,.75,.2,1) both .57s;
}

.nz-hero .nz-hero__actions {
  animation: nzHeroTextIn .8s cubic-bezier(.2,.75,.2,1) both .66s;
}

.nz-hero .nz-hero__benefits {
  animation: nzHeroTextIn .8s cubic-bezier(.2,.75,.2,1) both .76s;
}

.nz-hero .nz-hero__visual {
  animation: nzHeroVisualIn 1.15s cubic-bezier(.18,.8,.2,1) both .22s;
}

@keyframes nzHeroTextIn {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes nzHeroTitleIn {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes nzHeroVisualIn {
  from {
    opacity: 0;
    transform: translate3d(45px, 24px, 0) scale(.965);
    filter: blur(9px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

/* Larger desktop header. */
@media (min-width: 861px) {
  body.home .navbar,
  body .navbar {
    min-height: 104px !important;
  }

  body.home .navbar__logo,
  body .navbar__logo {
    height: 104px !important;
    padding-block: 7px !important;
  }

  body.home .navbar__logo img,
  body .navbar__logo img {
    width: auto !important;
    height: 84px !important;
    max-width: 235px !important;
  }

  body.home .navbar__link a,
  body .navbar__link a {
    min-height: 46px;
    padding-inline: 17px !important;
    font-size: clamp(12px, 1vw, 14px) !important;
    letter-spacing: .075em !important;
  }
}

/* Dedicated mobile menu button. Old #toggle-menu-icon is no longer used. */
.nz-menu-toggle {
  position: relative;
  z-index: 1002;
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  place-content: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  color: var(--nz-white);
  background: rgba(255,255,255,.08);
  box-shadow: none;
  cursor: pointer;
  transition: background-color .3s ease, border-color .3s ease, transform .3s ease;
}

.nz-menu-toggle:hover {
  border-color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.14);
}

.nz-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 20px;
  background: currentColor;
  transform-origin: center;
  transition: transform .35s cubic-bezier(.2,.75,.2,1), opacity .25s ease, width .3s ease;
}

.nz-menu-toggle span:nth-child(2) {
  width: 16px;
  margin-left: auto;
}

.nz-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nz-menu-toggle.is-open span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.nz-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.nz-menu-open {
  overflow: hidden !important;
}

body.home #rMenu,
body #rMenu {
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  display: block !important;
  width: 100vw !important;
  height: 100svh !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform .55s cubic-bezier(.2,.75,.2,1), opacity .35s ease, visibility 0s linear .55s;
}

body.home #rMenu.is-open,
body #rMenu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: 0s;
}

body.home #rMenu .rMenu__links,
body #rMenu .rMenu__links {
  padding: 105px 24px 40px;
}

body.home #rMenu .rMenu__link,
body #rMenu .rMenu__link {
  opacity: 0;
  transform: translateY(18px);
}

body.home #rMenu.is-open .rMenu__link,
body #rMenu.is-open .rMenu__link {
  animation: nzMobileLinkIn .55s cubic-bezier(.2,.75,.2,1) both;
}

body.home #rMenu.is-open .rMenu__link:nth-child(1),
body #rMenu.is-open .rMenu__link:nth-child(1) { animation-delay: .14s; }
body.home #rMenu.is-open .rMenu__link:nth-child(2),
body #rMenu.is-open .rMenu__link:nth-child(2) { animation-delay: .19s; }
body.home #rMenu.is-open .rMenu__link:nth-child(3),
body #rMenu.is-open .rMenu__link:nth-child(3) { animation-delay: .24s; }
body.home #rMenu.is-open .rMenu__link:nth-child(4),
body #rMenu.is-open .rMenu__link:nth-child(4) { animation-delay: .29s; }
body.home #rMenu.is-open .rMenu__link:nth-child(5),
body #rMenu.is-open .rMenu__link:nth-child(5) { animation-delay: .34s; }
body.home #rMenu.is-open .rMenu__link:nth-child(6),
body #rMenu.is-open .rMenu__link:nth-child(6) { animation-delay: .39s; }

@keyframes nzMobileLinkIn {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 860px) {
  body.home .navbar,
  body .navbar {
    min-height: 88px !important;
  }

  body.home .navbar__logo,
  body .navbar__logo {
    height: 88px !important;
    padding-block: 5px !important;
  }

  body.home .navbar__logo img,
  body .navbar__logo img {
    width: auto !important;
    height: 72px !important;
    max-width: 205px !important;
  }

  .norka-home .nz-hero__title {
    min-height: 1.9em;
    font-size: clamp(50px, 13.8vw, 78px) !important;
  }

  .norka-home .nz-hero__title-static,
  .norka-home .nz-hero__typed-line {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  body.home .navbar__logo img,
  body .navbar__logo img {
    height: 68px !important;
    max-width: 185px !important;
  }

  .nz-menu-toggle {
    width: 48px;
    height: 48px;
  }

  .norka-home .nz-hero__title {
    font-size: clamp(46px, 13.5vw, 66px) !important;
    letter-spacing: -.045em !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nz-hero .nz-eyebrow,
  .nz-hero .nz-hero__title-static,
  .nz-hero .nz-hero__typed-line,
  .nz-hero .nz-hero__signature,
  .nz-hero .nz-hero__lead,
  .nz-hero .nz-hero__actions,
  .nz-hero .nz-hero__benefits,
  .nz-hero .nz-hero__visual {
    animation: none !important;
  }
}


/* =========================================================
   V5: HERO RESPONSIVE FIX, CAROUSEL FALLBACK, FOOTER CLAMPS
   ========================================================= */

/* Hero is no longer vertically centered inside an artificial 100vh box.
   This removes the oversized empty area below the fixed header. */
.norka-home .nz-hero {
  display: block !important;
  min-height: 0 !important;
  padding: 126px 0 clamp(62px, 5vw, 82px) !important;
}

.norka-home .nz-hero__grid {
  grid-template-columns: minmax(0, .95fr) minmax(470px, 1.05fr) !important;
  align-items: center !important;
  gap: clamp(42px, 5vw, 78px) !important;
}

.norka-home .nz-hero__content {
  min-width: 0;
  padding-top: 0 !important;
}

/* Hero has its own entrance sequence, so generic reveal rules must not hide it. */
.norka-home.nz-motion-ready .nz-hero .reveal {
  opacity: 1;
  transform: none;
}

.norka-home .nz-hero__title {
  width: 100% !important;
  max-width: 680px !important;
  min-height: 0 !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: clamp(50px, 4.35vw, 70px) !important;
  font-weight: 600 !important;
  line-height: .96 !important;
  letter-spacing: -.052em !important;
}

.norka-home .nz-hero__title-static {
  max-width: 100%;
  white-space: normal !important;
  text-wrap: balance;
}

.norka-home .nz-hero__typed-line {
  display: flex !important;
  width: 100% !important;
  min-height: 1.16em !important;
  margin-top: .12em;
  align-items: baseline;
  overflow: visible !important;
  font-size: clamp(40px, 3.6vw, 58px) !important;
  line-height: 1.04 !important;
  letter-spacing: -.045em !important;
  white-space: nowrap !important;
}

.norka-home .nz-hero__typed-text {
  max-width: calc(100% - .22em);
  overflow: visible;
}

/* Safer title entrance: no clipping mask that can leave only fragments visible. */
.nz-hero .nz-hero__title-static,
.nz-hero .nz-hero__typed-line {
  animation-name: nzHeroTitleSafeIn !important;
}

@keyframes nzHeroTitleSafeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.norka-home .nz-hero__image-wrap,
.norka-home .nz-hero__image {
  min-height: clamp(520px, 61vh, 650px) !important;
}

/* Owl Carousel hides .owl-carousel before initialization. This fallback keeps
   attractions visible even when the old theme carousel script throws an error. */
.nz-attractions__carousel {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  width: 100%;
  opacity: 1 !important;
  visibility: visible !important;
}

.nz-attractions__carousel.owl-loaded {
  display: block !important;
}

.nz-attractions__carousel:not(.owl-loaded) > .nz-attraction-card,
.nz-attractions__carousel.is-static-grid > .nz-attraction-card {
  display: flex !important;
  min-width: 0;
  opacity: 1 !important;
  visibility: visible !important;
}

.nz-attractions .owl-carousel .owl-stage-outer {
  overflow: hidden !important;
}

.nz-attractions .owl-carousel.owl-loaded .owl-item {
  min-height: 1px;
}

/* Footer typography scales with the viewport instead of staying at 10–13px. */
.footer h1,
.footer h2,
.footer .h5Size {
  font-size: clamp(23px, 1.55vw, 30px) !important;
  line-height: 1.2 !important;
}

.footer a,
.footer p,
.footer .p2Size,
.footer__contact-infos,
.footer__infos-links,
.footer__infos-hours,
.footer__handy-links {
  font-size: clamp(14px, .92vw, 17px) !important;
  line-height: 1.72 !important;
}

.footer__icons {
  grid-template-columns: clamp(32px, 2vw, 38px) 1fr !important;
  gap: clamp(10px, 1vw, 15px) !important;
}

.footer__icons img {
  width: clamp(19px, 1.25vw, 23px) !important;
  height: clamp(19px, 1.25vw, 23px) !important;
}

.footer__infos-links,
.footer__handy-links {
  gap: clamp(8px, .75vw, 12px) !important;
}

.footer__contact-infos {
  gap: clamp(17px, 1.35vw, 23px) !important;
}

.footer__socials-links img {
  width: clamp(46px, 3.1vw, 54px) !important;
  height: clamp(46px, 3.1vw, 54px) !important;
  padding: clamp(12px, .85vw, 15px) !important;
}

.footer__credits {
  font-size: clamp(11px, .72vw, 13px) !important;
  line-height: 1.65 !important;
}

@media (max-width: 1280px) {
  .norka-home .nz-hero {
    padding-top: 118px !important;
  }

  .norka-home .nz-hero__grid {
    grid-template-columns: minmax(0, .98fr) minmax(430px, 1.02fr) !important;
    gap: 44px !important;
  }

  .norka-home .nz-hero__title {
    font-size: clamp(48px, 4.7vw, 64px) !important;
  }

  .norka-home .nz-hero__typed-line {
    font-size: clamp(39px, 3.9vw, 53px) !important;
  }
}

@media (max-width: 1050px) {
  .norka-home .nz-hero {
    padding: 108px 0 70px !important;
  }

  .norka-home .nz-hero__grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 54px !important;
  }

  .norka-home .nz-hero__content {
    width: min(100%, 760px);
  }

  .norka-home .nz-hero__title {
    max-width: 720px !important;
    font-size: clamp(50px, 7vw, 72px) !important;
  }

  .norka-home .nz-hero__typed-line {
    font-size: clamp(42px, 6vw, 61px) !important;
  }

  .norka-home .nz-hero__visual {
    width: min(100%, 820px);
    margin-left: auto;
  }

  .nz-attractions__carousel:not(.owl-loaded),
  .nz-attractions__carousel.is-static-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .norka-home .nz-hero {
    padding: 96px 0 58px !important;
  }

  .norka-home .nz-hero__grid {
    gap: 38px !important;
  }

  .norka-home .nz-eyebrow {
    margin-bottom: 18px;
    font-size: clamp(10px, 3vw, 12px);
  }

  .norka-home .nz-hero__title {
    max-width: 100% !important;
    font-size: clamp(43px, 12.8vw, 60px) !important;
    line-height: .98 !important;
  }

  .norka-home .nz-hero__typed-line {
    min-height: 2.18em !important;
    font-size: clamp(36px, 10.7vw, 49px) !important;
    line-height: 1.04 !important;
    white-space: normal !important;
    overflow-wrap: normal;
  }

  .norka-home .nz-hero__lead {
    margin-top: 22px !important;
    font-size: clamp(15px, 4.2vw, 17px) !important;
  }

  .norka-home .nz-hero__benefits {
    margin-top: 40px;
  }

  .norka-home .nz-hero__image-wrap,
  .norka-home .nz-hero__image {
    min-height: clamp(410px, 120vw, 520px) !important;
  }

  .nz-attractions__carousel:not(.owl-loaded),
  .nz-attractions__carousel.is-static-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer h1,
  .footer h2,
  .footer .h5Size {
    font-size: clamp(24px, 7vw, 29px) !important;
  }

  .footer a,
  .footer p,
  .footer .p2Size,
  .footer__contact-infos,
  .footer__infos-links,
  .footer__infos-hours,
  .footer__handy-links {
    font-size: clamp(15px, 4.2vw, 17px) !important;
  }
}

@media (max-width: 480px) {
  .norka-home .nz-hero {
    padding-top: 92px !important;
  }

  .norka-home .nz-hero__title {
    font-size: clamp(40px, 12.4vw, 52px) !important;
  }

  .norka-home .nz-hero__typed-line {
    font-size: clamp(34px, 10.3vw, 44px) !important;
  }

  .norka-home .nz-hero__signature {
    margin-top: 16px;
  }
}

/* =========================================================
   V6: MOBILE MENU FLOW FIX, FULL-VIEWPORT HERO, LOCATION MOBILE
   ========================================================= */

/* rMenu must never participate in document flow. The previous 100svh block
   caused an empty viewport before the hero when position: fixed was lost. */
#rMenu {
  position: fixed !important;
  inset: 0 !important;
  z-index: 1000 !important;
  display: none !important;
  width: 100vw !important;
  height: 100dvh !important;
  min-height: 100svh !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden auto !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(100%, 0, 0) !important;
  transition:
    transform .52s cubic-bezier(.2, .75, .2, 1),
    opacity .3s ease,
    visibility 0s linear .52s !important;
}

#rMenu .rMenu__links {
  min-height: 100%;
  margin: 0 !important;
}

body > header {
  z-index: 1002 !important;
}

.navbar__hamburger,
.nz-menu-toggle {
  position: relative;
  z-index: 1003;
}

/* Hero fills at least the viewport, but expands naturally whenever its content
   is taller. There is no fixed height and nothing can be clipped. */
.norka-home .nz-hero {
  display: flex !important;
  min-height: 100svh !important;
  align-items: center !important;
  padding: clamp(126px, 14vh, 154px) 0 clamp(54px, 7vh, 86px) !important;
  box-sizing: border-box;
}

@supports (min-height: 100dvh) {
  .norka-home .nz-hero {
    min-height: 100dvh !important;
  }
}

.norka-home .nz-hero__grid {
  width: min(calc(100% - 80px), var(--nz-shell));
  margin-block: auto;
}

.norka-home .nz-hero__title,
.norka-home .nz-hero__typed-line,
.norka-home .nz-hero__typed-text {
  max-width: 100% !important;
  overflow: visible !important;
}

.norka-home .nz-hero__typed-line {
  white-space: normal !important;
  text-wrap: balance;
}

.norka-home .nz-hero__image-wrap,
.norka-home .nz-hero__image {
  height: clamp(500px, 61vh, 650px) !important;
  min-height: 0 !important;
}

/* Mobile navigation is rendered only below the breakpoint. */
@media (max-width: 860px) {
  #rMenu {
    display: block !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    background:
      radial-gradient(circle at 88% 12%, rgba(181, 107, 63, .22), transparent 27%),
      radial-gradient(circle at 8% 92%, rgba(169, 188, 174, .09), transparent 29%),
      var(--nz-forest-deep) !important;
  }

  #rMenu.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate3d(0, 0, 0) !important;
    transition-delay: 0s !important;
  }

  #rMenu .rMenu__links {
    display: flex !important;
    min-height: 100%;
    align-items: flex-start !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: clamp(10px, 2.4vh, 22px) !important;
    padding: 112px clamp(24px, 8vw, 58px) 48px !important;
  }

  #rMenu .rMenu__link {
    width: 100%;
    padding: 0 !important;
    list-style: none;
  }

  #rMenu .rMenu__link a {
    display: inline-flex;
    width: auto;
    padding: 7px 0 !important;
    color: rgba(255, 255, 255, .9) !important;
    font-size: clamp(31px, 8.4vw, 48px) !important;
    line-height: 1.08 !important;
  }

  body.nz-menu-open header,
  body.nz-menu-open header.is-scrolled {
    background: rgba(20, 37, 30, .96) !important;
    transform: translateY(0) !important;
  }

  body.nz-menu-open .navbar__logo img {
    filter: brightness(0) invert(1) !important;
  }

  .norka-home .nz-hero {
    min-height: 100svh !important;
    padding: 112px 0 66px !important;
    align-items: flex-start !important;
  }

  .norka-home .nz-hero__grid {
    width: min(calc(100% - 40px), var(--nz-shell));
    margin-block: 0;
  }

  .norka-home .nz-hero__image-wrap,
  .norka-home .nz-hero__image {
    height: clamp(460px, 68vw, 590px) !important;
    min-height: 0 !important;
  }
}

@media (max-width: 700px) {
  .norka-home .nz-hero {
    padding: 108px 0 54px !important;
  }

  .norka-home .nz-hero__grid {
    width: min(calc(100% - 28px), var(--nz-shell));
    gap: 42px !important;
  }

  .norka-home .nz-hero__title {
    font-size: clamp(41px, 12vw, 57px) !important;
    line-height: .99 !important;
  }

  .norka-home .nz-hero__typed-line {
    min-height: 2.12em !important;
    font-size: clamp(34px, 10vw, 47px) !important;
    line-height: 1.06 !important;
  }

  .norka-home .nz-hero__image-wrap,
  .norka-home .nz-hero__image {
    height: clamp(420px, 118vw, 525px) !important;
  }
}

@media (max-width: 480px) {
  #rMenu .rMenu__links {
    padding-top: 104px !important;
  }

  .norka-home .nz-hero {
    padding-top: 104px !important;
  }

  .norka-home .nz-hero__grid {
    width: min(calc(100% - 24px), var(--nz-shell));
  }

  .norka-home .nz-hero__title {
    font-size: clamp(39px, 11.8vw, 50px) !important;
  }

  .norka-home .nz-hero__typed-line {
    font-size: clamp(32px, 9.7vw, 42px) !important;
  }
}

/* Location remains one coherent card on tablets and phones. */
.localization__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  margin-top: 2px;
}

.localization__meta-item {
  min-width: 0;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  background: rgba(255, 255, 255, .045);
}

.localization__meta-item span,
.localization__meta-item strong {
  display: block;
}

.localization__meta-item span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, .42);
  font-size: clamp(9px, .68vw, 11px);
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.localization__meta-item strong {
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(12px, .9vw, 15px);
  font-weight: 600;
  line-height: 1.45;
}

@media (max-width: 1050px) {
  .localization {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }

  .localization__info {
    min-height: 0 !important;
    gap: 38px !important;
    padding: 58px clamp(32px, 7vw, 68px) 42px !important;
  }

  .localization__info-btns {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
  }

  .localization__content,
  .localization__content iframe {
    min-height: 470px !important;
  }
}

@media (max-width: 700px) {
  .localization {
    width: calc(100% - 16px) !important;
    margin: 72px auto !important;
    border: 1px solid rgba(31, 41, 35, .08);
    border-radius: 26px !important;
    box-shadow: 0 20px 55px rgba(20, 37, 30, .13) !important;
  }

  .localization::after {
    display: none;
  }

  .localization__info {
    min-height: 0 !important;
    gap: 30px !important;
    padding: 44px 22px 30px !important;
  }

  .localization__info-header {
    gap: 17px !important;
  }

  .localization__info-header .h3Size {
    font-size: clamp(42px, 13vw, 58px) !important;
  }

  .localization__info-header .p2Size {
    max-width: 100%;
    font-size: clamp(14px, 4vw, 16px) !important;
    line-height: 1.72;
  }

  .localization__meta {
    gap: 8px;
  }

  .localization__meta-item {
    padding: 13px 12px;
    border-radius: 14px;
  }

  .localization__info-btns {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .localization__info-btns .btn {
    min-height: 54px;
    font-size: clamp(11px, 3.2vw, 13px) !important;
  }

  .localization__content,
  .localization__content iframe {
    min-height: 390px !important;
  }

  .localization__content::after {
    border-width: 6px !important;
    border-top-width: 0 !important;
    border-radius: 0 0 24px 24px !important;
  }
}

@media (max-width: 430px) {
  .localization {
    width: calc(100% - 10px) !important;
  }

  .localization__info {
    padding-inline: 18px !important;
  }

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

  .localization__content,
  .localization__content iframe {
    min-height: 355px !important;
  }
}


/* =========================================================
   FINAL POLISH: HOME MOTION + SMOOTH FAQ
   ========================================================= */

.norka-home.nz-motion-ready .nz-reveal-heading.reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(7px);
}

.norka-home.nz-motion-ready .nz-reveal-media.reveal:not(.is-visible) {
  opacity: 0;
  transform: translate3d(0, 38px, 0) scale(.965);
  filter: blur(8px);
}

.norka-home.nz-motion-ready .nz-reveal-card.reveal:not(.is-visible) {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(.975);
  filter: blur(5px);
}

.norka-home.nz-motion-ready .nz-reveal-heading.reveal,
.norka-home.nz-motion-ready .nz-reveal-media.reveal,
.norka-home.nz-motion-ready .nz-reveal-card.reveal {
  transition:
    opacity .88s cubic-bezier(.2,.72,.2,1),
    transform .88s cubic-bezier(.2,.72,.2,1),
    filter .88s cubic-bezier(.2,.72,.2,1);
  transition-delay: var(--nz-local-delay, var(--reveal-delay, 0ms));
}

.norka-home.nz-motion-ready .nz-reveal-heading.reveal.is-visible,
.norka-home.nz-motion-ready .nz-reveal-media.reveal.is-visible,
.norka-home.nz-motion-ready .nz-reveal-card.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.norka-home .nz-kicker::before,
.norka-home .nz-eyebrow::before {
  transform-origin: left center;
}

.norka-home.nz-motion-ready .nz-reveal-heading:not(.is-visible) .nz-kicker::before {
  transform: scaleX(0);
}

.norka-home .nz-reveal-heading .nz-kicker::before {
  transition: transform .72s cubic-bezier(.2,.72,.2,1) .18s;
}

.norka-home .nz-apartments__photo img,
.norka-home .nz-place__image img,
.norka-home .nz-final-cta__background img {
  transition:
    transform 1.15s cubic-bezier(.2,.72,.2,1),
    filter .8s ease;
}

.norka-home .nz-apartments__visual.is-visible .nz-apartments__photo img,
.norka-home .nz-place__image.is-visible img,
.norka-home .nz-final-cta__content.is-visible ~ * img {
  filter: saturate(1.02);
}

.norka-home .nz-check-item,
.norka-home .nz-amenity,
.norka-home .nz-attraction-card {
  will-change: transform;
}

.norka-home .nz-check-item:hover {
  transform: translateX(7px);
}

.norka-home .nz-check-item__icon {
  transition:
    transform .38s cubic-bezier(.2,.72,.2,1),
    background-color .38s ease,
    color .38s ease;
}

.norka-home .nz-check-item:hover .nz-check-item__icon {
  color: var(--nz-white);
  background: var(--nz-forest);
  transform: rotate(-8deg) scale(1.08);
}

/* FAQ: smooth height plus soft answer reveal. */
.norka-home .nz-faq details {
  overflow: clip;
  transition:
    background-color .35s ease,
    border-color .35s ease;
}

.norka-home .nz-faq details.is-animating {
  will-change: height;
}

.norka-home .nz-faq summary {
  transition:
    color .3s ease,
    padding-left .35s cubic-bezier(.2,.72,.2,1);
}

.norka-home .nz-faq details:hover summary {
  padding-left: 8px;
}

.norka-home .nz-faq__answer {
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity .32s ease,
    transform .38s cubic-bezier(.2,.72,.2,1);
}

.norka-home .nz-faq details[open] .nz-faq__answer,
.norka-home .nz-faq details.is-opening .nz-faq__answer {
  opacity: 1;
  transform: translateY(0);
}

.norka-home .nz-faq details.is-closing .nz-faq__answer {
  opacity: 0;
  transform: translateY(-8px);
}

.norka-home .nz-faq details[open] summary {
  color: var(--nz-forest);
}

@media (prefers-reduced-motion: reduce) {
  .norka-home .nz-reveal-heading,
  .norka-home .nz-reveal-media,
  .norka-home .nz-reveal-card,
  .norka-home .nz-faq__answer,
  .norka-home .nz-faq summary {
    transition: none !important;
    filter: none !important;
  }
}
