@font-face {
  font-family: "Made Evolve Sans";
  src: url("assets/fonts/made-evolve-sans.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Made Evolve Sans";
  src: url("assets/fonts/made-evolve-sans-medium.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Made Evolve Sans";
  src: url("assets/fonts/made-evolve-sans-bold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mirador Display";
  src: local("Mirador Book"), local("Mirador"), local("Mirador Medium");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --coral: #ec784d;
  --coral-deep: #d7653e;
  --green: #2f493f;
  --green-deep: #20362f;
  --green-ink: #16251f;
  --black: #1c1c1b;
  --white: #fffeff;
  --paper: #f5efe6;
  --paper-soft: #fbf8f2;
  --mist: #e8ede5;
  --sage: #61736a;
  --line: rgba(47, 73, 63, 0.14);
  --shadow-soft: 0 24px 80px rgba(28, 28, 27, 0.12);
  --shadow-strong: 0 36px 110px rgba(22, 37, 31, 0.28);
  --max: 1200px;
  --display: "Mirador Display", Georgia, "Times New Roman", serif;
  --sans: "Made Evolve Sans", "Segoe UI", Tahoma, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(236, 120, 77, 0.08), transparent 28rem),
    linear-gradient(180deg, var(--paper-soft), var(--paper));
  color: var(--black);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: rgba(236, 120, 77, 0.28);
}

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

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  top: 22px;
  left: max(22px, calc((100vw - var(--max)) / 2));
  right: max(22px, calc((100vw - var(--max)) / 2));
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
  pointer-events: none;
}

.brand,
.menu-toggle,
.menu-panel {
  pointer-events: auto;
}

.brand {
  display: flex;
  align-items: center;
  min-height: 58px;
  border: 1px solid rgba(255, 254, 255, 0.16);
  border-radius: 8px;
  padding: 11px 14px;
  background: rgba(22, 37, 31, 0.34);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .menu-toggle {
  border-color: rgba(255, 254, 255, 0.2);
  background: rgba(22, 37, 31, 0.78);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.24);
}

.brand img {
  width: 156px;
  height: auto;
  object-fit: contain;
}

.menu-toggle {
  position: fixed;
  top: 22px;
  right: max(22px, calc((100vw - var(--max)) / 2));
  z-index: 12;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 254, 255, 0.2);
  border-radius: 8px;
  padding: 0;
  color: var(--white);
  background: rgba(22, 37, 31, 0.64);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.menu-toggle:hover {
  border-color: rgba(236, 120, 77, 0.78);
  background: rgba(22, 37, 31, 0.72);
  transform: translateY(-1px);
}

.menu-toggle span {
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease, width 220ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

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

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.menu-panel {
  position: fixed;
  top: 92px;
  right: max(22px, calc((100vw - var(--max)) / 2));
  z-index: 11;
  width: min(340px, calc(100vw - 44px));
  border: 1px solid rgba(255, 254, 255, 0.16);
  border-radius: 8px;
  padding: 10px;
  background: rgba(22, 37, 31, 0.9);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 180ms ease, visibility 180ms ease, transform 220ms ease;
}

.site-header.is-menu-open .menu-panel,
.menu-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.menu-nav {
  display: grid;
  gap: 2px;
}

.menu-nav a {
  display: flex;
  align-items: center;
  min-height: 50px;
  border-radius: 6px;
  padding: 0 14px;
  color: rgba(255, 254, 255, 0.86);
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.menu-nav a:hover {
  color: var(--white);
  background: rgba(255, 254, 255, 0.08);
  transform: translateX(2px);
}

.menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 10px;
  border-radius: 6px;
  padding: 0 16px;
  background: var(--coral);
  color: var(--white);
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.menu-cta:hover {
  background: var(--coral-deep);
  box-shadow: 0 18px 42px rgba(236, 120, 77, 0.24);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 142px max(32px, calc((100vw - var(--max)) / 2)) 74px;
  color: var(--white);
  background: var(--black) url("assets/images/lagos-condominio.webp") center / cover no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: var(--black) url("assets/images/lagos-condominio.webp") center / cover no-repeat;
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  transform: translate(-50%, -50%) scale(1.08);
  border: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease;
}

.hero.is-video-ready .hero-video iframe {
  opacity: 1;
}

.is-file-preview .hero-video {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(3, 11, 9, 0.94) 0%, rgba(6, 24, 19, 0.82) 32%, rgba(6, 24, 19, 0.42) 62%, rgba(3, 11, 9, 0.58) 100%),
    radial-gradient(ellipse at 28% 54%, rgba(3, 11, 9, 0.66) 0%, rgba(3, 11, 9, 0.42) 34%, transparent 66%),
    linear-gradient(0deg, rgba(3, 11, 9, 0.95) 0%, rgba(3, 11, 9, 0.24) 46%, rgba(3, 11, 9, 0.66) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    repeating-radial-gradient(ellipse at -8% 48%, transparent 0 34px, rgba(236, 120, 77, 0.32) 35px 37px, transparent 38px 58px),
    repeating-radial-gradient(ellipse at 42% 50%, transparent 0 62px, rgba(255, 254, 255, 0.08) 63px 64px, transparent 65px 104px);
  background-size: 560px 760px, 940px 760px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.7) 42%, transparent 76%);
}

.hero-content {
  position: relative;
  width: min(820px, 100%);
  z-index: 4;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .section-kicker,
.lifestyle-section .section-kicker {
  color: #ffb192;
}

.hero .section-kicker {
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.68);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.02;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(56px, 6.2vw, 88px);
  letter-spacing: 0;
  text-shadow:
    0 3px 2px rgba(0, 0, 0, 0.46),
    0 18px 44px rgba(0, 0, 0, 0.72),
    0 0 72px rgba(0, 0, 0, 0.58);
}

h1 span {
  color: var(--coral);
  text-shadow:
    0 3px 2px rgba(0, 0, 0, 0.42),
    0 18px 48px rgba(0, 0, 0, 0.78),
    0 0 40px rgba(236, 120, 77, 0.18);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 4.4vw, 62px);
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.22;
}

.hero p {
  max-width: 640px;
  color: rgba(255, 254, 255, 0.9);
  font-size: 20px;
  text-shadow:
    0 2px 2px rgba(0, 0, 0, 0.6),
    0 12px 30px rgba(0, 0, 0, 0.72);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 6px;
  padding: 15px 24px;
  border: 1px solid transparent;
  font-weight: 700;
  text-transform: none;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(236, 120, 77, 0.32), 0 12px 42px rgba(0, 0, 0, 0.22);
}

.btn-primary:hover {
  background: var(--coral-deep);
  box-shadow: 0 22px 54px rgba(236, 120, 77, 0.34);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 254, 255, 0.42);
  background: rgba(5, 23, 18, 0.42);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  background: rgba(255, 254, 255, 0.16);
}

.btn-outline-dark {
  color: var(--green-ink);
  border-color: rgba(47, 73, 63, 0.24);
  background: rgba(255, 254, 255, 0.52);
}

.btn-outline-dark:hover {
  border-color: rgba(47, 73, 63, 0.48);
  background: rgba(47, 73, 63, 0.08);
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}

.hero-proof span {
  display: grid;
  gap: 2px;
  min-width: 176px;
  border: 1px solid rgba(255, 254, 255, 0.22);
  background: rgba(5, 23, 18, 0.52);
  backdrop-filter: blur(12px);
  border-radius: 6px;
  padding: 14px 16px;
  color: rgba(255, 254, 255, 0.86);
  font-size: 14px;
}

.hero-proof strong {
  display: block;
  color: var(--white);
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
}

.scroll-cue {
  position: absolute;
  right: max(32px, calc((100vw - var(--max)) / 2));
  bottom: 70px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 46px;
  height: 70px;
  border: 1px solid rgba(255, 254, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 254, 255, 0.06);
}

.scroll-cue span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  animation: cue 1600ms ease-in-out infinite;
}

@keyframes cue {
  0%, 100% {
    transform: translateY(-12px);
    opacity: 0.45;
  }

  50% {
    transform: translateY(12px);
    opacity: 1;
  }
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 124px 0;
}

.proof-section {
  position: relative;
}

.proof-section::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 86px;
  bottom: 86px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(236, 120, 77, 0.54), transparent);
}

.split-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 76px;
  align-items: center;
}

.section-copy p,
.section-intro p {
  color: rgba(28, 28, 27, 0.72);
}

.image-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  height: 520px;
  background: var(--green);
  box-shadow: var(--shadow-soft);
}

.image-panel img,
.wide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kenburns-panel img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  animation: kenburnsSlide 28s infinite;
}

.kenburns-panel img:nth-of-type(1) {
  animation-delay: -2s;
  transform-origin: 44% 46%;
}

.kenburns-panel img:nth-of-type(2) {
  animation-delay: 5s;
  transform-origin: 62% 42%;
}

.kenburns-panel img:nth-of-type(3) {
  animation-delay: 12s;
  transform-origin: 50% 54%;
}

.kenburns-panel img:nth-of-type(4) {
  animation-delay: 19s;
  transform-origin: 36% 48%;
}

@keyframes kenburnsSlide {
  0% {
    opacity: 0;
    transform: scale(1.06) translate3d(0, 0, 0);
  }

  6%,
  25% {
    opacity: 1;
  }

  31%,
  100% {
    opacity: 0;
    transform: scale(1.16) translate3d(-1.8%, -1.2%, 0);
  }
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 254, 255, 0.24);
  border-radius: inherit;
  pointer-events: none;
}

.image-panel figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  max-width: calc(100% - 36px);
  border: 1px solid rgba(255, 254, 255, 0.22);
  border-radius: 6px;
  padding: 10px 12px;
  color: rgba(255, 254, 255, 0.88);
  background: rgba(22, 37, 31, 0.52);
  backdrop-filter: blur(14px);
  font-size: 13px;
}

.lots-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  padding: 92px max(24px, calc((100vw - var(--max)) / 2)) 104px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(236, 120, 77, 0.12), transparent 28rem),
    linear-gradient(120deg, #071711 0%, var(--green-ink) 52%, var(--green) 100%);
}

.lots-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background:
    repeating-radial-gradient(ellipse at 102% 14%, transparent 0 44px, rgba(255, 254, 255, 0.1) 45px 46px, transparent 47px 78px),
    repeating-linear-gradient(105deg, transparent 0 28px, rgba(236, 120, 77, 0.18) 29px 30px, transparent 31px 56px);
  mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 82%, transparent 100%);
}

.lots-top,
.lots-section .benefit-list {
  position: relative;
  z-index: 1;
}

.lots-top {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(500px, 1.3fr);
  gap: 48px;
  align-items: stretch;
  margin-bottom: 28px;
}

.lots-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
  margin-bottom: 0;
  padding: 10px 0;
}

.lots-intro h2 {
  color: var(--white);
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
}

.lots-intro p {
  color: rgba(255, 254, 255, 0.76);
}

.lots-showcase {
  position: relative;
  min-height: clamp(560px, 45vw, 650px);
  align-self: stretch;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.28);
  background: var(--green-ink);
}

.lots-showcase img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.02);
}

.lots-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(4, 13, 10, 0.82), transparent 48%),
    linear-gradient(90deg, rgba(4, 13, 10, 0.55), transparent 58%);
  pointer-events: none;
}

.lots-showcase figcaption {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  max-width: 360px;
  border-radius: 6px;
  padding: 10px 12px;
  color: rgba(255, 254, 255, 0.9);
  background: rgba(5, 23, 18, 0.52);
  backdrop-filter: blur(14px);
  font-size: 13px;
}

.lot-tags {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.lot-tags span {
  min-height: 74px;
  border: 1px solid rgba(255, 254, 255, 0.16);
  border-radius: 6px;
  padding: 12px;
  color: rgba(255, 254, 255, 0.76);
  background: rgba(5, 23, 18, 0.62);
  backdrop-filter: blur(14px);
  font-size: 13px;
  line-height: 1.3;
}

.lot-tags strong {
  display: block;
  margin-bottom: 3px;
  color: var(--coral);
  font-size: 14px;
  line-height: 1.15;
}

.section-intro {
  max-width: 780px;
  margin-bottom: 48px;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  min-height: 260px;
  padding: 34px;
  border: 1px solid rgba(255, 254, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 254, 255, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  border-color: rgba(236, 120, 77, 0.44);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.22);
}

.benefit-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: rgba(236, 120, 77, 0.4);
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 6px;
  background: rgba(236, 120, 77, 0.13);
  color: var(--coral);
}

.benefit-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.benefit-item p {
  margin: 0;
  color: rgba(255, 254, 255, 0.68);
}

.benefit-item h3 {
  color: var(--white);
}

.lifestyle-section {
  position: relative;
  overflow: hidden;
  padding: 126px max(36px, calc((100vw - var(--max)) / 2)) 132px;
  color: var(--black);
  background:
    linear-gradient(180deg, #fffefd 0%, #fbf7ef 100%);
  border-top: 1px solid rgba(47, 73, 63, 0.08);
  border-bottom: 1px solid rgba(47, 73, 63, 0.1);
}

.lifestyle-section::after {
  display: none;
}

.lifestyle-bg {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background:
    radial-gradient(ellipse at 18% 100%, rgba(47, 73, 63, 0.08), transparent 34rem),
    radial-gradient(ellipse at 88% 12%, rgba(236, 120, 77, 0.08), transparent 30rem);
  pointer-events: none;
}

.lifestyle-frame {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 84px;
  align-items: center;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.lifestyle-section .section-copy {
  position: relative;
  max-width: 500px;
}

.lifestyle-section .section-copy::before {
  display: none;
}

.lifestyle-section .section-kicker {
  color: var(--coral-deep);
  margin-bottom: 20px;
  letter-spacing: 0.11em;
}

.lifestyle-section h2 {
  max-width: 520px;
  color: var(--black);
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1.03;
}

.lifestyle-section p {
  max-width: 470px;
  color: rgba(28, 28, 27, 0.7);
  font-size: 16px;
  line-height: 1.72;
}

.lifestyle-signature {
  display: grid;
  gap: 8px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(47, 73, 63, 0.16);
  color: var(--green);
}

.lifestyle-signature span {
  color: var(--coral-deep);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.lifestyle-signature strong {
  max-width: 390px;
  color: var(--green-ink);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.24;
}

.wide-image {
  position: relative;
  height: auto;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 4px;
  box-shadow: none;
}

.lifestyle-visual {
  height: auto;
}

.lifestyle-visual::before {
  display: none;
}

.lifestyle-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.28;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 34px 84px rgba(22, 37, 31, 0.18);
}

.lifestyle-visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(47, 73, 63, 0.14);
  color: rgba(28, 28, 27, 0.58);
}

.lifestyle-visual figcaption span {
  flex: 0 0 auto;
  color: var(--coral-deep);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lifestyle-visual figcaption strong {
  max-width: 360px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
}

.leisure-section {
  position: relative;
  width: 100%;
  max-width: none;
  overflow: hidden;
  padding: 94px max(36px, calc((100vw - var(--max)) / 2)) 112px;
  color: var(--white);
  background:
    radial-gradient(circle at 13% 12%, rgba(236, 120, 77, 0.12), transparent 27rem),
    radial-gradient(circle at 92% 8%, rgba(255, 254, 255, 0.08), transparent 24rem),
    linear-gradient(130deg, #06120e 0%, var(--green-ink) 52%, #203a31 100%);
}

.leisure-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background:
    repeating-radial-gradient(ellipse at 8% 36%, transparent 0 52px, rgba(255, 254, 255, 0.09) 53px 54px, transparent 55px 88px),
    repeating-linear-gradient(112deg, transparent 0 34px, rgba(236, 120, 77, 0.15) 35px 36px, transparent 37px 66px);
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.78) 56%, transparent 100%);
}

.leisure-head,
.leisure-grid {
  position: relative;
  z-index: 1;
}

.leisure-head {
  display: grid;
  max-width: 1120px;
  gap: 20px;
  margin-bottom: 34px;
}

.leisure-head .section-intro {
  max-width: 1080px;
  margin-bottom: 0;
}

.leisure-head h2 {
  color: var(--white);
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

.leisure-head p {
  max-width: 850px;
  color: rgba(255, 254, 255, 0.76);
}

.leisure-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  max-width: 100%;
}

.leisure-note span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(255, 254, 255, 0.14);
  border-radius: 999px;
  padding: 0 16px;
  color: rgba(255, 254, 255, 0.78);
  background: rgba(255, 254, 255, 0.06);
  backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.leisure-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
}

.leisure-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  min-height: 430px;
  border-radius: 8px;
  color: var(--white);
  background: var(--black);
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.24);
  isolation: isolate;
  transform: translateY(0);
  transition: transform 420ms ease, box-shadow 420ms ease;
  grid-column: span 4;
}

.has-js .leisure-card {
  opacity: 0;
  transform: translateY(34px);
}

.has-js .leisure-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.82, 0.2, 1),
    box-shadow 420ms ease;
  transition-delay: calc(var(--order, 0) * 90ms);
}

.leisure-card.large {
  grid-column: auto;
  grid-row: auto;
}

.leisure-card.wide {
  grid-column: auto;
}

.leisure-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transform: scale(1.04);
  transform-origin: 50% 50%;
  animation: leisureImageDrift 16s ease-in-out infinite alternate;
  transition: transform 700ms ease, opacity 300ms ease;
}

.leisure-card:nth-child(1) {
  --order: 0;
}

.leisure-card:nth-child(2) {
  --order: 1;
}

.leisure-card:nth-child(3) {
  --order: 2;
}

.leisure-card:nth-child(4) {
  --order: 3;
  grid-column: span 6;
}

.leisure-card:nth-child(5) {
  --order: 4;
  grid-column: span 6;
}

.leisure-card:nth-child(2) img {
  animation-delay: -4s;
  transform-origin: 54% 44%;
}

.leisure-card:nth-child(3) img {
  animation-delay: -8s;
  transform-origin: 62% 48%;
}

.leisure-card:nth-child(4) img {
  animation-delay: -12s;
  transform-origin: 46% 58%;
}

.leisure-card:nth-child(5) img {
  animation-delay: -16s;
  transform-origin: 58% 54%;
}

.leisure-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(4, 13, 10, 0.95), rgba(4, 13, 10, 0.32) 48%, rgba(4, 13, 10, 0.08) 100%),
    linear-gradient(90deg, rgba(4, 13, 10, 0.44), transparent 72%);
}

.leisure-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border: 1px solid rgba(255, 254, 255, 0.14);
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}

.leisure-card:hover img {
  animation: none;
  transform: scale(1.11);
  opacity: 1;
}

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

.leisure-card:hover,
.has-js .leisure-card.is-visible:hover {
  transform: translateY(-8px);
  box-shadow: 0 42px 106px rgba(0, 0, 0, 0.34);
}

.leisure-card div {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.leisure-card.large div {
  padding: 30px;
}

.card-index {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
}

.leisure-card p {
  margin: 0;
  color: rgba(255, 254, 255, 0.78);
}

.leisure-card h3 {
  max-width: 420px;
  color: var(--white);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.44);
}

@keyframes leisureImageDrift {
  0% {
    transform: scale(1.04) translate3d(-1.5%, 0, 0);
  }

  100% {
    transform: scale(1.11) translate3d(1.5%, -1.25%, 0);
  }
}

.summary-section {
  padding: 82px max(24px, calc((100vw - var(--max)) / 2)) 96px;
  background:
    linear-gradient(180deg, rgba(255, 254, 255, 0.86), rgba(245, 239, 230, 0.92)),
    var(--white);
}

.summary-head {
  max-width: 900px;
  margin-bottom: 34px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 255, 0.7);
  box-shadow: 0 18px 54px rgba(47, 73, 63, 0.08);
}

.summary-grid article {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(47, 73, 63, 0.03), rgba(47, 73, 63, 0));
}

.summary-grid article:last-child {
  border-right: 0;
}

.summary-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
}

.summary-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 20px;
  line-height: 1.2;
}

.summary-grid p {
  margin: 0;
  color: rgba(28, 28, 27, 0.68);
}

.visit-section {
  grid-template-columns: 0.92fr 1.08fr;
  position: relative;
}

.visit-section::before {
  content: "";
  position: absolute;
  inset: 58px -34px;
  z-index: -1;
  border: 1px solid rgba(47, 73, 63, 0.09);
  border-radius: 8px;
}

.visit-badge {
  display: inline-flex;
  margin-bottom: 22px;
  border: 1px solid rgba(47, 73, 63, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--green);
  background: rgba(255, 254, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.visit-section .btn {
  margin-top: 18px;
}

.visit-gallery img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  animation: visitGallerySlide 40s infinite;
}

.visit-gallery img:nth-of-type(1) {
  animation-delay: -2s;
  transform-origin: 50% 50%;
}

.visit-gallery img:nth-of-type(2) {
  animation-delay: 6s;
  transform-origin: 58% 44%;
}

.visit-gallery img:nth-of-type(3) {
  animation-delay: 14s;
  transform-origin: 45% 52%;
}

.visit-gallery img:nth-of-type(4) {
  animation-delay: 22s;
  transform-origin: 52% 48%;
}

.visit-gallery img:nth-of-type(5) {
  animation-delay: 30s;
  transform-origin: 62% 54%;
}

@keyframes visitGallerySlide {
  0% {
    opacity: 0;
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  5%,
  18% {
    opacity: 1;
  }

  23%,
  100% {
    opacity: 0;
    transform: scale(1.13) translate3d(-1.4%, -1%, 0);
  }
}

.conversion-section {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(320px, 520px);
  gap: 70px;
  align-items: center;
  padding: 118px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(236, 120, 77, 0.18), transparent 24rem),
    linear-gradient(120deg, var(--green-deep), var(--green-ink));
}

.conversion-copy img {
  width: 240px;
  height: auto;
  object-fit: contain;
  margin-bottom: 34px;
}

.conversion-copy p {
  color: rgba(255, 254, 255, 0.76);
}

.lead-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 254, 255, 0.16);
  border-radius: 8px;
  padding: 30px;
  background: rgba(255, 254, 255, 0.07);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 254, 255, 0.86);
  font-weight: 700;
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"] {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 254, 255, 0.24);
  border-radius: 6px;
  padding: 0 15px;
  color: var(--white);
  background: rgba(255, 254, 255, 0.08);
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.lead-form input:focus {
  border-color: var(--coral);
  background: rgba(255, 254, 255, 0.12);
}

.consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--coral);
}

.consent a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-form .btn {
  width: 100%;
}

.form-note {
  margin: 0;
  color: rgba(255, 254, 255, 0.58);
  font-size: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding: 48px max(24px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 254, 255, 0.62);
  background: var(--black);
  font-size: 14px;
}

.site-footer img {
  width: 190px;
  height: auto;
  object-fit: contain;
  margin-bottom: 18px;
}

.site-footer p {
  margin-bottom: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--coral);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  border: 1px solid rgba(255, 254, 255, 0.14);
  border-radius: 8px;
  padding: 18px;
  color: var(--white);
  background: rgba(6, 24, 19, 0.94);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.cookie-consent strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--font-sans);
}

.cookie-consent p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 254, 255, 0.72);
  font-size: 14px;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-consent .btn {
  min-height: 46px;
  padding: 13px 18px;
  font-size: 13px;
}

.legal-page {
  color: var(--ink);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(236, 120, 77, 0.08), transparent 34rem),
    linear-gradient(180deg, #fffefd 0%, var(--paper) 100%);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--green-deep);
}

.legal-header img {
  width: 190px;
  height: auto;
  object-fit: contain;
}

.legal-header a:not(.btn) {
  color: rgba(255, 254, 255, 0.76);
  font-weight: 700;
}

.legal-main {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 110px;
}

.legal-main h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: var(--ink);
}

.legal-main h2 {
  margin-top: 46px;
  margin-bottom: 14px;
  color: var(--green-deep);
  font-size: clamp(28px, 4vw, 42px);
}

.legal-main p,
.legal-main li {
  color: rgba(28, 28, 27, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

.legal-main ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 22px;
}

.legal-main a {
  color: var(--coral);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-note {
  margin: 34px 0 0;
  border-left: 3px solid var(--coral);
  padding: 18px 20px;
  background: rgba(47, 73, 63, 0.07);
}

body.is-map-open {
  overflow: hidden;
}

.map-modal[hidden] {
  display: none;
}

.map-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 28px;
}

.map-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 11, 9, 0.78);
  backdrop-filter: blur(18px);
}

.map-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  width: min(1120px, 100%);
  max-height: min(88vh, 840px);
  overflow: auto;
  border: 1px solid rgba(255, 254, 255, 0.16);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 254, 255, 0.98), rgba(245, 239, 230, 0.98));
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.42);
}

.map-modal__close {
  position: sticky;
  top: 0;
  justify-self: end;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(47, 73, 63, 0.2);
  border-radius: 999px;
  color: var(--green-ink);
  background: rgba(255, 254, 255, 0.86);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.map-modal__head {
  max-width: 680px;
}

.map-modal__head h2 {
  margin-bottom: 0;
  color: var(--green-ink);
  font-size: clamp(34px, 4vw, 54px);
}

.map-modal img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(47, 73, 63, 0.12);
  background: var(--white);
}

@media (max-width: 980px) {
  .site-header {
    top: 18px;
    left: 18px;
    right: 18px;
    gap: 16px;
  }

  .brand {
    min-height: 56px;
    padding: 10px 13px;
  }

  .brand img {
    width: 150px;
  }

  .menu-toggle {
    top: 18px;
    right: 18px;
    width: 56px;
    height: 56px;
  }

  .menu-panel {
    top: 84px;
    right: 18px;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 38px;
  }

  .split-section,
  .conversion-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .image-panel {
    height: 380px;
  }

  .benefit-list,
  .summary-grid {
    grid-template-columns: 1fr;
  }

  .lots-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .lots-showcase {
    min-height: 360px;
  }

  .lots-showcase img {
    min-height: 360px;
  }

  .summary-grid article,
  .summary-grid article:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .summary-grid article:last-child {
    border-bottom: 0;
  }

  .lifestyle-section {
    padding: 98px 24px 116px;
  }

  .lifestyle-section::after {
    display: none;
  }

  .lifestyle-frame {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .lifestyle-section .section-copy {
    max-width: 680px;
  }

  .wide-image {
    width: 100%;
    height: auto;
  }

  .lifestyle-visual::before {
    inset: -18px 18px 34px -18px;
  }

  .leisure-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .leisure-card {
    grid-column: auto;
  }

  .leisure-card.large,
  .leisure-card.wide {
    grid-column: auto;
  }

  .leisure-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .leisure-note {
    justify-content: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .cookie-consent {
    grid-template-columns: 1fr;
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .cookie-consent__actions {
    justify-content: stretch;
  }

  .cookie-consent .btn {
    width: 100%;
  }

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-main {
    width: min(100% - 32px, 920px);
    padding: 64px 0 82px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .site-header {
    top: 14px;
    left: 14px;
    right: 14px;
    display: grid;
    grid-template-columns: auto 52px;
    align-items: start;
    justify-content: space-between;
    gap: 10px;
  }

  .brand {
    min-height: 52px;
    padding: 9px 11px;
  }

  .brand img {
    width: 126px;
  }

  .menu-toggle {
    position: fixed;
    justify-self: end;
    top: 14px;
    right: 14px;
    z-index: 100;
    width: 52px;
    height: 52px;
    border-color: rgba(255, 254, 255, 0.28);
    background: rgba(22, 37, 31, 0.76);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  }

  .menu-panel {
    left: 0;
    right: 14px;
    top: 76px;
    width: auto;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    align-items: end;
    padding: 112px 20px 34px;
  }

  .hero-content {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(3, 11, 9, 0.96), rgba(3, 11, 9, 0.34) 66%),
      radial-gradient(ellipse at 36% 66%, rgba(3, 11, 9, 0.72), transparent 62%),
      linear-gradient(90deg, rgba(3, 11, 9, 0.86), rgba(3, 11, 9, 0.3));
  }

  .hero::after {
    opacity: 0.12;
  }

  .hero h1,
  .hero .section-kicker {
    max-width: 350px;
  }

  .hero p {
    max-width: 330px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  h2 {
    font-size: 33px;
  }

  h3 {
    font-size: 19px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
    margin-top: 28px;
    max-width: 350px;
  }

  .btn {
    width: 100%;
    padding-inline: 16px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-top: 34px;
  }

  .hero-proof span {
    min-width: 0;
    width: 100%;
    padding: 12px 14px;
  }

  .hero-proof strong {
    font-size: 22px;
  }

  .section {
    width: min(100% - 32px, var(--max));
    padding: 82px 0;
  }

  .lots-section,
  .summary-section,
  .conversion-section {
    padding: 82px 16px;
  }

  .lots-showcase,
  .lots-showcase img {
    min-height: 420px;
  }

  .lot-tags {
    grid-template-columns: 1fr;
  }

  .lot-tags span {
    min-height: 0;
  }

  .benefit-item {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 26px;
  }

  .benefit-number {
    top: 22px;
    right: 22px;
    font-size: 34px;
  }

  .leisure-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .leisure-card,
  .leisure-card.large,
  .leisure-card.wide {
    grid-column: 1;
    grid-row: auto;
    min-height: 360px;
  }

  .leisure-card.large div,
  .leisure-card div {
    padding: 26px;
  }

  .summary-grid article {
    min-height: auto;
  }

  .conversion-copy img {
    width: 190px;
  }

  .lead-form {
    padding: 20px;
  }

  .map-modal {
    padding: 12px;
  }

  .map-modal__dialog {
    max-height: 92vh;
    padding: 18px;
  }

  .scroll-cue {
    display: none;
  }

  .visit-section::before {
    display: none;
  }
}

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

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

  .kenburns-panel img,
  .visit-gallery img {
    animation: none !important;
    opacity: 0;
    transform: none;
  }

  .kenburns-panel img:first-of-type,
  .visit-gallery img:first-of-type {
    opacity: 1;
  }

  .leisure-card,
  .has-js .leisure-card,
  .has-js .leisure-card.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .leisure-card img {
    animation: none !important;
    transform: none;
  }
}
