:root {
  --ink: #102326;
  --deep: #071719;
  --teal: #243a39;
  --aqua: #e9e2d2;
  --sand: #f1eadc;
  --paper: #fbf8f0;
  --clay: #b26a4b;
  --gold: #c7a660;
  --white: #ffffff;
  --muted: #687a78;
  --line: rgba(16, 35, 38, 0.14);
  --shadow: 0 24px 80px rgba(7, 23, 25, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 90;
  height: 3px;
  width: 0;
  background: var(--gold);
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 60;
  height: 76px;
  padding: 18px clamp(18px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--white);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 210px;
  font-weight: 700;
}

.brand img {
  width: 150px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 18px rgba(0,0,0,.32));
}

.brand span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .82;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.header-messengers,
.footer-messengers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-messengers a,
.footer-messengers a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  color: var(--white);
  background: rgba(255,255,255,.08);
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.header-messengers a:hover,
.footer-messengers a:hover {
  transform: translateY(-2px);
  background: var(--white);
  color: var(--deep);
}

.header-messengers svg,
.footer-messengers svg {
  width: 18px;
  height: 18px;
}

.desktop-nav a,
.header-phone {
  padding: 9px 0;
  opacity: .88;
  transition: opacity .2s ease, color .2s ease;
}

.desktop-nav a:hover,
.header-phone:hover { opacity: 1; color: var(--aqua); }

.header-phone {
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  z-index: 55;
  inset: 72px 16px auto 16px;
  display: none;
  padding: 18px;
  background: rgba(7, 23, 25, .96);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-menu.open {
  display: grid;
  gap: 14px;
}

.mobile-menu a {
  padding: 10px 4px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.mobile-phone {
  color: var(--aqua);
  font-weight: 800;
}

.mobile-messengers {
  display: flex;
  gap: 8px;
  padding-top: 4px;
}

.mobile-messengers a {
  flex: 1;
  padding: 10px 8px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 118px clamp(18px, 5vw, 72px) 132px;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}

.hero-overlay {
  background: linear-gradient(115deg, rgba(7, 23, 25, .86) 0%, rgba(7, 23, 25, .62) 48%, rgba(7, 23, 25, .18) 100%);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--clay);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.hero .eyebrow { color: var(--aqua); }
.section-dark .section-kicker { color: var(--gold); }

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 20px;
  font-size: clamp(32px, 3.7vw, 54px);
  line-height: 1.04;
  font-weight: 600;
  max-width: 700px;
  text-wrap: balance;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(27px, 2.8vw, 42px);
  line-height: 1.04;
  font-weight: 600;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.1;
}

.lead {
  max-width: 660px;
  color: rgba(255,255,255,.88);
  font-size: clamp(16px, 1.7vw, 19px);
}

.hero-actions,
.lead-actions,
.center-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-actions { margin-top: 30px; }
.center-actions { justify-content: center; margin-top: 32px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--gold); color: var(--deep); }
.btn.glass {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.34);
  backdrop-filter: blur(12px);
}
.btn.outline-light {
  color: var(--white);
  border-color: rgba(255,255,255,.45);
  background: transparent;
}
.btn.wide { width: 100%; }

.text-link {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 800;
  color: var(--teal);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  width: min(760px, 100%);
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-stats div {
  padding: 18px;
  background: rgba(7,23,25,.42);
  backdrop-filter: blur(16px);
}

.hero-stats strong {
  display: block;
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 5vw, 72px);
  bottom: 42px;
  width: 42px;
  height: 64px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
}

.scroll-cue::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  border-radius: 50%;
  background: var(--white);
  animation: cue 1.6s infinite;
}

@keyframes cue {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(24px); opacity: 0; }
  100% { opacity: 0; }
}

.section {
  padding: clamp(72px, 10vw, 132px) 0;
}

.section-light { background: var(--paper); }
.section-sand { background: var(--sand); }
.section-dark { background: var(--deep); color: var(--white); }
.section-video { background: #e5efe9; }

.container {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}

.copy {
  color: var(--muted);
  font-size: 18px;
}

.copy p + p { margin-top: 18px; }
.copy-muted { color: rgba(255,255,255,.68); font-size: 18px; }

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.feature-row article {
  overflow: hidden;
  min-height: 280px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(16, 35, 38, .06);
}

.feature-row article > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-row article > div {
  padding: 22px 24px 26px;
}

.feature-row span {
  display: block;
  margin-bottom: 16px;
  color: var(--clay);
  font-weight: 800;
}

.feature-row strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.feature-row p,
.cards-grid p,
.image-card p,
.faq-grid p,
.commercial-grid p,
.construction-grid p { color: var(--muted); }

.video-grid,
.tour-layout,
.lead-layout,
.commercial-grid,
.construction-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.presentation-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 0;
  outline: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.tour-frame {
  position: relative;
  min-height: 470px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(rgba(7,23,25,.2), rgba(7,23,25,.72)), url("../images/resort-hero.jpg") center/cover;
  border: 0;
  box-shadow: 0 24px 80px rgba(0,0,0,.34);
  isolation: isolate;
}

.tour-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  background: #000;
}

.tour-frame.is-loaded {
  background: #000;
}

.tour-load {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  min-width: 190px;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--deep);
  font-weight: 900;
  cursor: pointer;
}

.section-head {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

.section-dark .section-head p { color: rgba(255,255,255,.68); }

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

.attraction-grid article {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--deep);
  box-shadow: 0 16px 48px rgba(16, 35, 38, .08);
}

.attraction-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.attraction-grid article:hover img {
  transform: scale(1.035);
}

.attraction-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,23,25,.04) 24%, rgba(7,23,25,.8) 100%);
}

.attraction-grid div {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 8px;
  color: var(--white);
}

.apartment-visual,
.commercial-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(16, 35, 38, .08);
}

.attraction-grid span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--deep);
  background: var(--gold);
  font-weight: 900;
  font-size: 13px;
}

.attraction-grid strong {
  font-size: 22px;
  line-height: 1.08;
}

.apartment-visual p {
  color: var(--muted);
}

.sticky-section {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  padding: 0;
  background: var(--deep);
  color: var(--white);
}

.sticky-media {
  position: relative;
  top: 0;
  min-height: 680px;
  height: auto;
}

.sticky-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticky-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,23,25,.1), rgba(7,23,25,.58));
}

.sticky-copy {
  align-self: center;
  padding: clamp(42px, 6vw, 76px);
  max-width: 680px;
}

.sticky-copy p { color: rgba(255,255,255,.72); font-size: 18px; }

.metric-line {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.metric-line span {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
}

.metric-line strong {
  display: block;
  color: var(--gold);
  font-size: 38px;
  line-height: 1;
}

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

.infrastructure-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.image-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid rgba(16,35,38,.12);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-card div { padding: 24px; }

.gallery figure:hover img {
  transform: scale(1.035);
}

.wellness-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.wellness-grid a {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(16,35,38,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.wellness-grid a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(16,35,38,.12);
}

.wellness-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wellness-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,23,25,.02), rgba(7,23,25,.72));
}

.wellness-grid span {
  position: absolute;
  z-index: 1;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(7,23,25,.78);
  border-radius: 6px;
  font-weight: 900;
}

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

.plan-grid article {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 390px;
  padding: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
}

.plan-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.plan-visuals img {
  width: 100%;
  height: 240px;
  background: var(--white);
  border-radius: 6px;
}

.plan-visuals img:first-child {
  object-fit: contain;
  padding: 12px;
}

.plan-visuals img:last-child {
  object-fit: cover;
}

.plan-grid h3 { margin: 0; }
.plan-grid p { color: rgba(255,255,255,.68); margin: 0; }

.apartment-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: 0;
  align-items: stretch;
  margin-top: 22px;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  color: var(--white);
}

.apartment-visual img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.apartment-visual div {
  padding: clamp(24px, 4vw, 42px);
}

.apartment-visual h3 {
  font-size: clamp(26px, 3vw, 38px);
}

.apartment-visual p {
  color: rgba(255,255,255,.68);
}

.gallery {
  width: min(1320px, calc(100% - 36px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gallery figure {
  position: relative;
  min-height: 280px;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(7,23,25,.72);
  border-radius: 6px;
  font-size: 13px;
}

.commercial-card,
.commercial-benefits {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.commercial-card img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.commercial-benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.commercial-benefits a {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 190px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(16,35,38,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.commercial-benefits a:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 56px rgba(16,35,38,.14);
}

.commercial-benefits span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--deep);
  background: var(--gold);
  font-weight: 900;
}

.commercial-benefits strong {
  font-size: 22px;
  line-height: 1.05;
}

.construction-slider {
  position: relative;
  display: grid;
  gap: 14px;
}

.slider-controls {
  position: absolute;
  z-index: 3;
  right: 14px;
  top: 14px;
  display: flex;
  gap: 8px;
}

.slider-controls button {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: var(--deep);
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(7,23,25,.16);
}

.construction-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(100%, 100%);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: var(--radius);
  scrollbar-width: none;
}

.construction-track::-webkit-scrollbar { display: none; }

.construction-track figure {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--deep);
}

.construction-track img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.construction-track figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(7,23,25,.76);
  border-radius: 6px;
  font-weight: 800;
}

.construction-track figcaption span {
  display: inline-flex;
  margin-right: 10px;
  color: var(--gold);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: var(--sand);
  border-radius: var(--radius);
}

.timeline span {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
  font-weight: 900;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid var(--line);
}

.lead-layout {
  align-items: start;
}

.lead-form-panel {
  display: grid;
  gap: 16px;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
}

.lead-form .consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 500;
  line-height: 1.35;
}

.lead-form .consent input {
  min-height: 18px;
  height: 18px;
  margin-top: 2px;
}

.hp { position: absolute; left: -9999px; }

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--aqua);
  font-weight: 700;
}

.form-status.error { color: #ffb4a1; }

.form-messengers {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}

.form-messengers p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.messenger-mail {
  width: fit-content;
  color: var(--white);
  font-weight: 800;
  border-bottom: 1px solid rgba(255,255,255,.42);
}

.form-messengers-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.messenger-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  color: var(--deep);
  background: var(--white);
  font-weight: 900;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.messenger-btn:hover {
  transform: translateY(-2px);
  color: var(--white);
  background: #111;
}

.messenger-btn svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.faq-grid article {
  min-height: 210px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(16,35,38,.06);
}

.faq-grid h3 {
  font-size: 20px;
}

.faq-section .section-head {
  margin-inline: auto;
  text-align: center;
}

.site-footer {
  padding: 46px 0;
  color: var(--white);
  background: #071112;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 24px;
}

.footer-grid p { color: rgba(255,255,255,.66); max-width: 420px; }
.footer-grid div { display: grid; align-content: start; gap: 10px; }
.footer-grid a { color: rgba(255,255,255,.74); }
.footer-grid a:hover { color: var(--aqua); }
.footer-logo { width: 168px; height: auto; }
.footer-messengers {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  margin-top: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(8px);
  transition: opacity .8s ease, transform .8s ease, filter .8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal > article,
.reveal > figure,
.reveal .image-card,
.reveal .attraction-grid article,
.reveal .wellness-grid a,
.reveal .commercial-benefits a,
.reveal .plan-grid article,
.reveal .faq-grid article {
  opacity: 0;
  transform: translateY(26px) scale(.985);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible > article,
.reveal.is-visible > figure,
.reveal.is-visible .image-card,
.reveal.is-visible .attraction-grid article,
.reveal.is-visible .wellness-grid a,
.reveal.is-visible .commercial-benefits a,
.reveal.is-visible .plan-grid article,
.reveal.is-visible .faq-grid article {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal.is-visible > article:nth-child(2),
.reveal.is-visible > figure:nth-child(2),
.reveal.is-visible .image-card:nth-child(2),
.reveal.is-visible .attraction-grid article:nth-child(2),
.reveal.is-visible .wellness-grid a:nth-child(2),
.reveal.is-visible .commercial-benefits a:nth-child(2),
.reveal.is-visible .plan-grid article:nth-child(2),
.reveal.is-visible .faq-grid article:nth-child(2) { transition-delay: .08s; }

.reveal.is-visible > article:nth-child(3),
.reveal.is-visible > figure:nth-child(3),
.reveal.is-visible .image-card:nth-child(3),
.reveal.is-visible .attraction-grid article:nth-child(3),
.reveal.is-visible .wellness-grid a:nth-child(3),
.reveal.is-visible .commercial-benefits a:nth-child(3),
.reveal.is-visible .plan-grid article:nth-child(3),
.reveal.is-visible .faq-grid article:nth-child(3) { transition-delay: .16s; }

.reveal.is-visible > article:nth-child(4),
.reveal.is-visible > figure:nth-child(4),
.reveal.is-visible .attraction-grid article:nth-child(4),
.reveal.is-visible .wellness-grid a:nth-child(4),
.reveal.is-visible .commercial-benefits a:nth-child(4),
.reveal.is-visible .faq-grid article:nth-child(4) { transition-delay: .24s; }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .header-messengers { display: none; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .header-phone { display: none; }
  .site-header { height: 72px; padding: 14px 18px; }
  .split,
  .video-grid,
  .tour-layout,
  .lead-layout,
  .commercial-grid,
  .construction-grid,
  .sticky-section {
    grid-template-columns: 1fr;
  }
  .sticky-section { min-height: auto; }
  .sticky-media { position: relative; height: 62vh; min-height: 420px; }
  .sticky-copy { padding: 56px 18px 76px; width: min(var(--max), calc(100% - 36px)); margin-inline: auto; }
  .feature-row,
  .cards-grid,
  .infrastructure-grid,
  .plan-grid,
  .attraction-grid,
  .wellness-grid,
  .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .apartment-visual,
  .plan-visuals { grid-template-columns: 1fr 1fr; }
  .commercial-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .hero {
    min-height: 100svh;
    padding: 104px 18px 112px;
  }
  .hero-media { object-position: center center; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(7,23,25,.78) 0%, rgba(7,23,25,.5) 42%, rgba(7,23,25,.88) 100%);
  }
  .brand { min-width: 0; }
  .brand img { width: 126px; }
  h1 { font-size: 30px; }
  h2 { font-size: 29px; }
  .lead { font-size: 16px; }
  .hero-actions,
  .lead-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
  .scroll-cue { display: none; }
  .section { padding: 68px 0; }
  .feature-row,
  .cards-grid,
  .infrastructure-grid,
  .plan-grid,
  .attraction-grid,
  .wellness-grid,
  .faq-grid,
  .commercial-benefits,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .attraction-grid article { min-height: 270px; }
  .tour-frame,
  .tour-frame iframe { min-height: 360px; }
  .tour-frame iframe { height: 100%; }
  .sticky-media { height: 54vh; min-height: 340px; }
  .metric-line { grid-template-columns: 1fr; }
  .plan-grid article { min-height: auto; }
  .plan-visuals { grid-template-columns: 1fr; }
  .plan-visuals img { height: 220px; }
  .apartment-visual img,
  .construction-track figure,
  .construction-track img { min-height: 320px; }
  .slider-controls {
    position: static;
    order: 2;
    justify-content: center;
  }
  .gallery { grid-template-columns: 1fr; }
  .gallery figure { min-height: 260px; }
  .form-messengers-row { grid-template-columns: 1fr; }
  .brand span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
