@font-face {
  font-family: "Bodoni Moda";
  src: url("../fonts/bodoni-moda-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --midnight: #07111d;
  --ink: #111722;
  --paper: #f5f7f5;
  --white: #ffffff;
  --mist: #dce4e4;
  --line: #c9d2d1;
  --cyan: #39c3d5;
  --ruby: #d24e7a;
  --muted: #667178;
  --display: "Bodoni Moda", "Times New Roman", serif;
  --sans: "Manrope", Arial, sans-serif;
  --shell: min(1320px, calc(100vw - 96px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: var(--cyan);
  color: var(--midnight);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 140px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: 64px;
}

.eyebrow {
  margin: 0;
  color: #59646b;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--cyan {
  color: var(--cyan);
}

.display-title {
  max-width: 950px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 7vw, 112px);
  font-weight: 400;
  line-height: 0.94;
}

.display-title--light {
  color: var(--white);
}

.section-lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease, gap 0.25s ease;
}

.text-link:hover {
  color: var(--cyan);
  gap: 36px;
}

.text-link--light {
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button svg,
.header-cta svg,
.floating-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.button--accent {
  background: var(--cyan);
  color: var(--midnight);
}

.button--accent:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.page-loader {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-content: center;
  background: var(--midnight);
  color: var(--white);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

body.is-ready .page-loader {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.page-loader__mark {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-align: center;
}

.page-loader__line {
  width: 160px;
  height: 1px;
  margin-top: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.page-loader__line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cyan);
  transform: translateX(-100%);
  animation: loading-line 1.1s ease forwards;
}

@keyframes loading-line {
  to { transform: translateX(0); }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 84px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  transition: height 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  height: 70px;
  border-color: rgba(255, 255, 255, 0.1);
  background: var(--midnight);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
}

.brand__name {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.brand__x {
  color: var(--cyan);
}

.brand__place {
  color: var(--ruby);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-self: end;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.header-cta svg {
  width: 17px;
  height: 17px;
}

.header-cta:hover {
  background: var(--white);
  color: var(--midnight);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding: 130px 24px 36px;
  background: var(--midnight);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  padding: 9px 0;
  font-family: var(--display);
  font-size: clamp(42px, 11vw, 64px);
  line-height: 1;
}

.mobile-menu__foot {
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.mobile-menu__foot a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--midnight);
  color: var(--white);
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__image {
  background-image: url("../images/hero-city.webp");
  background-position: center center;
  background-size: cover;
  transform: scale(1.04);
  animation: hero-breathe 14s ease-out forwards;
}

.hero__veil {
  background: rgba(4, 10, 18, 0.56);
}

.hero__veil::after {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 18, 0.2);
  content: "";
  clip-path: polygon(0 0, 48% 0, 70% 100%, 0 100%);
}

@keyframes hero-breathe {
  to { transform: scale(1); }
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(760px, calc(100vw - 96px));
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  margin-left: max(48px, calc((100vw - 1320px) / 2));
  padding: 150px 0 170px;
}

.hero__eyebrow {
  margin-bottom: 26px;
  color: var(--cyan);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(72px, 9.2vw, 148px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.84;
}

.hero__intro {
  max-width: 560px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 42px;
}

.hero__rail {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 38px;
  display: grid;
  width: min(590px, 45vw);
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.hero__rail div {
  min-height: 82px;
  padding: 16px 18px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__rail div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__rail span {
  display: block;
  color: var(--cyan);
  font-size: 10px;
}

.hero__rail strong {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 38px;
  left: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left center;
}

.hero__scroll i {
  display: block;
  width: 42px;
  height: 1px;
  background: currentColor;
}

.intro {
  background: var(--paper);
}

.intro__copy {
  display: grid;
  max-width: 900px;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 56px;
  color: var(--muted);
  font-size: 17px;
}

.intro__copy p {
  margin: 0;
}

.intro__visual {
  display: grid;
  max-width: 1120px;
  grid-template-columns: minmax(0, 0.7fr) minmax(260px, 0.3fr);
  align-items: end;
  margin: 120px auto 0;
}

.intro__portrait {
  height: min(780px, 70vw);
  margin: 0;
  overflow: hidden;
  background: #dde2df;
}

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

.intro__statement {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 52px 46px;
  background: var(--midnight);
  color: var(--white);
}

.intro__statement span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro__statement strong {
  margin-top: 18px;
  font-family: var(--display);
  font-size: 126px;
  font-weight: 400;
  line-height: 0.75;
}

.intro__statement p {
  max-width: 240px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

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

.facts__item {
  display: grid;
  min-height: 180px;
  align-content: center;
  padding: 32px clamp(24px, 3vw, 52px);
  border-right: 1px solid var(--line);
}

.facts__item:last-child {
  border-right: 0;
}

.facts__item span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.facts__item strong {
  margin-top: 8px;
  font-family: var(--display);
  font-size: clamp(26px, 2.5vw, 39px);
  font-weight: 400;
  line-height: 1.1;
}

.investment {
  background: #edf1f0;
}

.investment__intro .section-lead {
  margin-top: 42px;
}

.investment__intro .display-title {
  font-size: clamp(58px, 6.6vw, 96px);
}

.investment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 72px 28px;
  margin-top: 92px;
}

.investment-card {
  padding-top: 18px;
  border-top: 1px solid #aeb9b8;
}

.investment-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--midnight);
}

.investment-card figure img {
  width: 100%;
  height: clamp(210px, 20vw, 278px);
  object-fit: cover;
  transition: transform 0.55s ease;
}

.investment-card:hover figure img {
  transform: scale(1.025);
}

.investment-card figure span {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: rgba(7, 17, 29, 0.92);
  color: var(--cyan);
  font-size: 9px;
}

.investment-card > div {
  display: block;
  padding-top: 24px;
}

.investment-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 2.7vw, 40px);
  font-weight: 400;
  line-height: 1.02;
}

.investment-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.investor-framework {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 86px;
  margin-top: 120px;
  padding: 76px 68px;
  background: var(--midnight);
  color: var(--white);
}

.investor-framework__heading h3 {
  margin: 26px 0 0;
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.95;
}

.investor-framework__heading > p:last-child {
  max-width: 430px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.investor-framework__profiles {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.investor-framework__profiles article {
  display: grid;
  min-height: 112px;
  grid-template-columns: 72px 1fr;
  gap: 26px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.investor-framework__profiles article > span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 46px;
  line-height: 1;
}

.investor-framework__profiles h4 {
  margin: 0;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.1;
}

.investor-framework__profiles p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.65;
}

.investment-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-top: 70px;
  padding: 34px 0;
  border-top: 1px solid #aeb9b8;
  border-bottom: 1px solid #aeb9b8;
}

.investment-cta h3 {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(35px, 4vw, 52px);
  font-weight: 400;
  line-height: 1;
}

.investment-disclaimer {
  max-width: 780px;
  margin: 18px 0 0 auto;
  color: #7e898d;
  font-size: 9px;
  line-height: 1.7;
  text-align: right;
}

.section--midnight {
  background: var(--midnight);
  color: var(--white);
}

.connectivity__heading {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 64px;
  align-items: end;
}

.connectivity__visual {
  position: relative;
  height: clamp(450px, 58vw, 760px);
  margin-top: 90px;
  overflow: hidden;
}

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

.connectivity__tag {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(360px, 42%);
  padding: 36px;
  background: var(--cyan);
  color: var(--midnight);
}

.connectivity__tag span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.connectivity__tag strong {
  display: block;
  margin-top: 14px;
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  line-height: 0.95;
}

.journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 74px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.journey__item {
  display: grid;
  min-height: 220px;
  grid-template-columns: 38px 1fr;
  gap: 20px;
  align-content: start;
  padding: 32px 28px 26px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.journey__item:not(:first-child) {
  padding-left: 28px;
}

.journey__item:last-child {
  border-right: 0;
}

.journey__number {
  color: var(--cyan);
  font-size: 10px;
}

.journey h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
}

.journey p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

.city-frame {
  position: relative;
  height: min(700px, 52vw);
  margin-top: 100px;
  overflow: hidden;
}

.city-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-frame__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: min(520px, 56%);
  grid-template-columns: 0.4fr 0.6fr;
  gap: 28px;
  padding: 28px 32px;
  background: rgba(7, 17, 29, 0.94);
}

.city-frame__caption span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.city-frame__caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.7;
}

.city-frame--map {
  height: auto;
  background: var(--white);
}

.city-frame--map img {
  width: auto;
  height: auto;
  margin-inline: auto;
  max-width: 100%;
  max-height: 860px;
  object-fit: contain;
}

.city-frame--map .city-frame__caption {
  position: static;
  width: 100%;
}

.aerial-experience {
  margin-top: 118px;
  padding-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.aerial-experience__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  gap: 90px;
  align-items: end;
}

.aerial-experience__heading h3 {
  margin: 22px 0 0;
  font-family: var(--display);
  font-size: clamp(55px, 6.5vw, 92px);
  font-weight: 400;
  line-height: 0.94;
}

.aerial-experience__heading > div:last-child > p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.aerial-experience__frame {
  position: relative;
  height: min(760px, 62vw);
  min-height: 540px;
  margin-top: 58px;
  overflow: hidden;
  background: #02070d;
}

.aerial-experience__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.aerial-experience__note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.facilities__intro .section-lead {
  margin-top: 42px;
}

.facility-viewer {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.38fr) minmax(340px, 0.62fr);
  margin-top: 92px;
  background: var(--midnight);
}

.facility-viewer__media {
  position: relative;
  overflow: hidden;
  background: #111923;
}

.facility-viewer__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease, transform 0.55s ease;
}

.facility-viewer__media img.is-changing {
  opacity: 0;
  transform: scale(1.015);
}

.facility-viewer__counter {
  position: absolute;
  top: 28px;
  left: 28px;
  min-width: 74px;
  padding: 9px 12px;
  background: rgba(7, 17, 29, 0.9);
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  text-align: center;
}

.facility-viewer__counter span {
  color: var(--cyan);
}

.facility-viewer__panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 54px 48px 30px;
  color: var(--white);
}

.facility-viewer__copy h3 {
  margin: 20px 0 0;
  font-family: var(--display);
  font-size: clamp(54px, 5vw, 78px);
  font-weight: 400;
  line-height: 0.95;
}

.facility-viewer__copy > p:last-child {
  max-width: 360px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.facility-tabs {
  display: grid;
  margin-top: 44px;
}

.facility-tabs button {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  padding: 16px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  font-size: 12px;
  text-align: left;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.facility-tabs button:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.facility-tabs button span {
  color: var(--cyan);
  font-size: 9px;
}

.facility-tabs button:hover,
.facility-tabs button.is-active {
  padding-left: 8px;
  color: var(--white);
}

.facility-list {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 80px;
  margin-top: 110px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.facility-list__heading > span {
  display: block;
  max-width: 360px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
}

.facility-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.facility-list li {
  display: grid;
  min-height: 74px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  padding: 12px 18px 12px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 24px;
}

.facility-list li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.facility-list li:nth-child(even) {
  padding-left: 24px;
}

.facility-list li span {
  color: var(--ruby);
  font-family: var(--sans);
  font-size: 9px;
}

.facility-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 110px;
  background: var(--midnight);
  color: var(--white);
}

.facility-directory > article {
  min-height: 590px;
  padding: 60px 54px 52px;
}

.facility-directory > article:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background: #101c29;
}

.facility-directory__level {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 34px;
  align-items: start;
}

.facility-directory__level > span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 90px;
  line-height: 0.8;
}

.facility-directory h3 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(46px, 4.3vw, 66px);
  font-weight: 400;
  line-height: 0.95;
}

.facility-directory ul {
  margin: 62px 0 0;
  padding: 0;
  list-style: none;
}

.facility-directory li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.facility-directory li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.arrival-story {
  display: grid;
  min-height: 720px;
  grid-template-columns: 1.08fr 0.92fr;
  background: var(--midnight);
  color: var(--white);
}

.arrival-story__image {
  min-height: 720px;
  overflow: hidden;
}

.arrival-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arrival-story__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(48px, 7vw, 120px);
}

.arrival-story__copy h2 {
  margin: 24px 0 0;
  font-family: var(--display);
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 400;
  line-height: 0.94;
}

.arrival-story__copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 34px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.75;
}

.arrival-story__copy .text-link {
  align-self: flex-start;
}

.suite__heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 80px;
  align-items: end;
}

.layout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 88px;
}

.layout-card {
  display: grid;
  min-height: 650px;
  grid-template-rows: minmax(0, 1fr) auto;
  border: 1px solid var(--line);
  background: var(--white);
}

.layout-card__image {
  display: grid;
  min-height: 390px;
  place-items: center;
  padding: 26px;
  overflow: hidden;
  background: #f8f9f7;
}

.layout-card__image img {
  width: 100%;
  height: 100%;
  max-height: 390px;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.layout-card:hover .layout-card__image img {
  transform: scale(1.025);
}

.layout-card__copy {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 32px;
  padding: 30px 32px 34px;
  border-top: 1px solid var(--line);
}

.layout-card__copy p {
  grid-column: 1 / -1;
  margin: 0 0 6px;
  color: var(--ruby);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.layout-card__copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(31px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.05;
}

.layout-card__copy strong {
  align-self: start;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.layout-card__copy span {
  grid-column: 1 / -1;
  max-width: 580px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.layout-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
  padding: 28px 0 0;
}

.layout-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.show-suite-heading {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 80px;
  align-items: end;
  margin-top: 126px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.show-suite-heading h3 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.95;
}

.show-suite-heading > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.suite__feature {
  position: relative;
  min-height: 720px;
  margin-top: 86px;
  overflow: hidden;
  background: #e2e5e2;
}

.suite__feature img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
}

.suite__spec {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  width: min(320px, 34%);
  min-height: 320px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  background: var(--midnight);
  color: var(--white);
}

.suite__spec p {
  margin: 0 0 auto;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.suite__spec strong {
  font-family: var(--display);
  font-size: 112px;
  font-weight: 400;
  line-height: 0.8;
}

.suite__spec span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.suite-gallery {
  margin-top: 34px;
  overflow: hidden;
}

.suite-gallery__track {
  display: grid;
  grid-auto-columns: minmax(380px, 42vw);
  grid-auto-flow: column;
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.suite-gallery__track::-webkit-scrollbar {
  display: none;
}

.suite-gallery figure {
  margin: 0;
  scroll-snap-align: start;
}

.suite-gallery figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.suite-gallery figcaption {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.suite-gallery figcaption span {
  color: var(--ruby);
  font-size: 9px;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.gallery-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.gallery-controls button:hover {
  background: var(--midnight);
  color: var(--white);
}

.suite__details {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 80px;
  margin-top: 105px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.suite__details h3 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.suite__details ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.suite__details li {
  position: relative;
  padding: 18px 16px 18px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.suite__details li::before {
  position: absolute;
  top: 25px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.developer__intro .section-lead {
  color: rgba(255, 255, 255, 0.58);
}

.developer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 92px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.developer-card {
  padding: 44px 34px 50px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.developer-card:first-child {
  padding-left: 0;
}

.developer-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.developer-card__logo {
  display: grid;
  width: 100%;
  height: 148px;
  place-items: center;
  margin-bottom: 38px;
  padding: 18px;
  background: var(--white);
}

.developer-card__logo img {
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 100%;
  object-fit: contain;
}

.developer-card__logo--square img {
  max-width: 104px;
}

.developer-card h3 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(33px, 3vw, 44px);
  font-weight: 400;
  line-height: 1;
}

.developer-card h4 {
  min-height: 48px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.developer-card > p:last-child {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.75;
}

.consultant-team {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 86px;
  margin-top: 100px;
}

.consultant-team h3 {
  margin: 20px 0 0;
  font-family: var(--display);
  font-size: clamp(45px, 4.5vw, 66px);
  font-weight: 400;
  line-height: 0.95;
}

.consultant-team dl {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.consultant-team dl div {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.consultant-team dt {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.consultant-team dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.contact {
  position: relative;
  display: grid;
  min-height: 800px;
  place-items: center;
  overflow: hidden;
  background: var(--midnight);
  color: var(--white);
  text-align: center;
}

.contact__image,
.contact__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact__image {
  object-fit: cover;
}

.contact__veil {
  background: rgba(3, 9, 16, 0.72);
}

.contact__content {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 870px;
  flex-direction: column;
  align-items: center;
  padding: 120px 36px;
}

.contact__content h2 {
  margin: 24px 0 0;
  font-family: var(--display);
  font-size: clamp(66px, 8vw, 120px);
  font-weight: 400;
  line-height: 0.88;
}

.contact__content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 34px 0 38px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.site-footer {
  padding: 76px 48px 32px;
  background: #040a12;
  color: var(--white);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 60px;
  align-items: start;
  padding-bottom: 70px;
}

.brand--footer .brand__name {
  font-size: 24px;
}

.site-footer__top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-whatsapp {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__legal {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: end;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.legal-links {
  display: flex;
  gap: 22px;
}

.legal-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-links button:hover {
  color: var(--cyan);
}

.site-footer__legal > p {
  max-width: 720px;
  margin: 0 0 0 auto;
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  line-height: 1.7;
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: #1fca68;
  color: var(--white);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px);
}

.floating-whatsapp svg {
  width: 29px;
  height: 29px;
}

.legal-dialog {
  width: min(820px, calc(100vw - 48px));
  max-height: min(760px, calc(100vh - 48px));
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
}

.legal-dialog::backdrop {
  background: rgba(4, 10, 18, 0.78);
}

.legal-dialog__close {
  position: sticky;
  z-index: 3;
  top: 18px;
  float: right;
  width: 42px;
  height: 42px;
  margin: 18px 18px 0 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.legal-dialog__content {
  padding: 70px 76px 78px;
}

.legal-dialog h2 {
  margin: 16px 0 34px;
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 76px);
  font-weight: 400;
  line-height: 1;
}

.legal-dialog h3 {
  margin: 36px 0 10px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
}

.legal-dialog p {
  color: var(--muted);
  font-size: 14px;
}

.legal-dialog p strong {
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 56px, 1040px);
  }

  .section {
    padding: 110px 0;
  }

  .site-header {
    padding: 0 28px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .hero__content {
    margin-left: 44px;
  }

  .hero__rail {
    display: none;
  }

  .hero__scroll {
    left: auto;
    right: 6px;
  }

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

  .facility-viewer {
    min-height: 650px;
    grid-template-columns: 1.18fr 0.82fr;
  }

  .arrival-story {
    min-height: 620px;
  }

  .arrival-story__image {
    min-height: 620px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100vw - 40px);
  }

  html {
    scroll-padding-top: 68px;
  }

  .section {
    padding: 92px 0;
  }

  .section-grid,
  .connectivity__heading,
  .suite__heading,
  .suite__details {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .display-title {
    font-size: clamp(54px, 13.8vw, 88px);
  }

  .site-header {
    height: 70px;
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    color: var(--white);
  }

  .mobile-menu {
    display: flex;
  }

  .hero {
    min-height: 780px;
  }

  .hero__image {
    background-position: 60% center;
  }

  .hero__veil {
    background: rgba(4, 10, 18, 0.62);
  }

  .hero__content {
    width: calc(100% - 40px);
    min-height: 780px;
    margin-left: 20px;
    padding: 128px 0 88px;
  }

  .hero h1 {
    font-size: clamp(66px, 20vw, 104px);
  }

  .hero__intro {
    max-width: 460px;
    font-size: 15px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
    margin-top: 32px;
  }

  .hero__scroll {
    display: none;
  }

  .intro__copy {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 38px;
    font-size: 15px;
  }

  .intro__visual {
    grid-template-columns: 1fr;
    margin-top: 72px;
  }

  .intro__portrait {
    height: min(720px, 114vw);
  }

  .intro__statement {
    min-height: 260px;
    padding: 34px 30px;
  }

  .intro__statement strong {
    font-size: 92px;
  }

  .facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .facts__item {
    min-height: 140px;
    border-bottom: 1px solid var(--line);
  }

  .facts__item:nth-child(2) {
    border-right: 0;
  }

  .facts__item:nth-child(3),
  .facts__item:nth-child(4) {
    border-bottom: 0;
  }

  .investment-grid {
    grid-template-columns: 1fr;
    gap: 58px;
    margin-top: 64px;
  }

  .investment-card > div {
    display: block;
  }

  .investor-framework {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 80px;
    padding: 54px 40px;
  }

  .investment-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .connectivity__visual {
    height: 560px;
    margin-top: 60px;
  }

  .connectivity__visual img {
    object-position: 59% center;
  }

  .connectivity__tag {
    width: min(330px, 84%);
    padding: 28px;
  }

  .journey {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }

  .journey__item,
  .journey__item:not(:first-child) {
    min-height: auto;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .city-frame {
    height: 600px;
    margin-top: 72px;
  }

  .city-frame--map {
    height: auto;
  }

  .city-frame img {
    object-position: 55% center;
  }

  .city-frame__caption {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .aerial-experience {
    margin-top: 82px;
    padding-top: 40px;
  }

  .aerial-experience__heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .aerial-experience__frame {
    height: 72vw;
    min-height: 470px;
    margin-top: 44px;
  }

  .facility-viewer {
    min-height: auto;
    grid-template-columns: 1fr;
    margin-top: 64px;
  }

  .facility-viewer__media {
    height: 560px;
  }

  .facility-viewer__panel {
    padding: 42px 28px 28px;
  }

  .facility-viewer__copy h3 {
    font-size: 60px;
  }

  .facility-list {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 72px;
  }

  .facility-directory {
    grid-template-columns: 1fr;
    margin-top: 78px;
  }

  .facility-directory > article {
    min-height: auto;
    padding: 52px 36px;
  }

  .facility-directory > article:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .arrival-story {
    grid-template-columns: 1fr;
  }

  .arrival-story__image {
    min-height: 520px;
  }

  .arrival-story__copy {
    padding: 80px 28px;
  }

  .layout-grid {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .layout-card {
    min-height: auto;
  }

  .layout-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .show-suite-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 90px;
  }

  .suite-gallery__track {
    grid-auto-columns: minmax(340px, 74vw);
  }

  .suite__details {
    margin-top: 80px;
  }

  .developer-grid {
    grid-template-columns: 1fr;
    margin-top: 64px;
  }

  .developer-card,
  .developer-card:first-child,
  .developer-card:last-child {
    padding: 36px 0 42px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .developer-card:last-child {
    border-bottom: 0;
  }

  .developer-card__logo {
    max-width: 520px;
  }

  .consultant-team {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 78px;
  }

  .contact {
    min-height: 720px;
  }

  .site-footer__top,
  .site-footer__legal {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__legal > p {
    margin: 0;
    text-align: left;
  }
}

@media (max-width: 540px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  body {
    font-size: 15px;
  }

  .section {
    padding: 76px 0;
  }

  .display-title {
    font-size: clamp(48px, 14vw, 68px);
    line-height: 0.98;
  }

  .section-lead {
    margin-top: 18px;
    font-size: 15px;
  }

  .hero {
    min-height: 740px;
  }

  .hero__image {
    background-position: 66% center;
  }

  .hero__content {
    width: calc(100% - 32px);
    min-height: 740px;
    margin-left: 16px;
    padding: 118px 0 70px;
  }

  .hero__eyebrow {
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(60px, 20.5vw, 86px);
    line-height: 0.87;
  }

  .hero__intro {
    margin-top: 28px;
    line-height: 1.6;
  }

  .button {
    width: 100%;
  }

  .hero__actions {
    width: 100%;
  }

  .intro__portrait {
    height: 128vw;
    max-height: 660px;
  }

  .facts__item {
    min-height: 128px;
    padding: 25px 18px;
  }

  .facts__item strong {
    font-size: 27px;
  }

  .investment__intro .section-lead {
    margin-top: 18px;
  }

  .investment__intro .display-title {
    font-size: clamp(48px, 14vw, 68px);
  }

  .investment-card > div {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .investment-card h3 {
    font-size: 34px;
  }

  .investor-framework {
    margin-top: 68px;
    padding: 44px 24px;
  }

  .investor-framework__heading h3 {
    font-size: 49px;
  }

  .investor-framework__profiles article {
    min-height: 104px;
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .investor-framework__profiles article > span {
    font-size: 36px;
  }

  .investment-cta .button {
    width: 100%;
  }

  .investment-disclaimer {
    margin-left: 0;
    text-align: left;
  }

  .connectivity__visual {
    height: 470px;
  }

  .connectivity__tag {
    width: 88%;
  }

  .city-frame {
    height: 520px;
  }

  .city-frame--map {
    height: auto;
  }

  .aerial-experience__heading h3 {
    font-size: 52px;
  }

  .aerial-experience__frame {
    height: 112vw;
    min-height: 390px;
  }

  .facility-viewer__media {
    height: 380px;
  }

  .facility-viewer__panel {
    padding: 34px 20px 20px;
  }

  .facility-viewer__copy h3 {
    font-size: 50px;
  }

  .facility-list ul {
    grid-template-columns: 1fr;
  }

  .facility-list li:nth-child(odd),
  .facility-list li:nth-child(even) {
    padding: 12px 0;
    border-right: 0;
  }

  .facility-list li {
    min-height: 64px;
    font-size: 22px;
  }

  .facility-directory > article {
    padding: 42px 22px;
  }

  .facility-directory__level {
    grid-template-columns: 64px 1fr;
    gap: 18px;
  }

  .facility-directory__level > span {
    font-size: 62px;
  }

  .facility-directory h3 {
    font-size: 43px;
  }

  .facility-directory ul {
    margin-top: 42px;
  }

  .arrival-story__image {
    min-height: 420px;
  }

  .arrival-story__copy {
    padding: 68px 20px;
  }

  .arrival-story__copy h2 {
    font-size: 54px;
  }

  .layout-card__image {
    min-height: 310px;
    padding: 16px;
  }

  .layout-card__image img {
    max-height: 330px;
  }

  .layout-card__copy {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 22px 28px;
  }

  .layout-card__copy strong {
    margin-top: 4px;
  }

  .show-suite-heading h3 {
    font-size: 48px;
  }

  .suite__feature {
    display: flex;
    min-height: auto;
    flex-direction: column-reverse;
    overflow: visible;
  }

  .suite__feature img {
    min-height: 440px;
    object-position: 57% center;
  }

  .suite__spec {
    position: static;
    width: 100%;
    min-height: 225px;
  }

  .suite-gallery__track {
    grid-auto-columns: calc(100vw - 48px);
    gap: 12px;
  }

  .suite__details ul {
    grid-template-columns: 1fr;
  }

  .developer-card__logo {
    height: 124px;
  }

  .developer-card h3 {
    font-size: 36px;
  }

  .consultant-team dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .gallery-controls {
    justify-content: space-between;
  }

  .gallery-controls span {
    margin-right: auto;
  }

  .contact {
    min-height: 680px;
  }

  .contact__content {
    padding: 90px 20px;
  }

  .contact__content h2 {
    font-size: 61px;
  }

  .site-footer {
    padding: 58px 20px 24px;
  }

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

  .legal-links {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .legal-dialog {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
  }

  .legal-dialog__content {
    padding: 54px 24px 54px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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